diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-18 01:40:16 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 21:30:34 +0100 |
commit | 7837c6fe4a41072357177c33fc47380a44aea78c (patch) | |
tree | 2da04707855dd7fa288d26fa5237721f6cc9efd1 /lib/Xconfig/test.pm | |
parent | 75738ce3cb6b7282de4e8f2641361f3fae716e83 (diff) | |
download | drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar.gz drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar.bz2 drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.tar.xz drakx-kbd-mouse-x11-7837c6fe4a41072357177c33fc47380a44aea78c.zip |
get_width() => get_allocated_width()
Diffstat (limited to 'lib/Xconfig/test.pm')
-rw-r--r-- | lib/Xconfig/test.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Xconfig/test.pm b/lib/Xconfig/test.pm index 2bdd7cc..c2f16cd 100644 --- a/lib/Xconfig/test.pm +++ b/lib/Xconfig/test.pm @@ -114,7 +114,7 @@ sub test { my $root = gtkroot(); my $gc = Gtk3::Gdk::GC->new($root); my $pixbuf = Gtk3::Gdk::Pixbuf->new_from_file("$::prefix/usr/share/mga/xfdrake/xfdrake-test-card.png"); - my ($w, $h) = ($pixbuf->get_width, $pixbuf->get_allocated_height); + my ($w, $h) = ($pixbuf->get_allocated_width, $pixbuf->get_allocated_height); my $pixmap = Gtk3::Gdk::Pixmap->new($root, $w, $h, $root->get_depth); $pixbuf->render_to_drawable($pixmap, $gc, 0, 0, 0, 0, $w, $h, 'none', 0, 0); $root->set_back_pixmap($pixmap, 0); |