summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-11-07 17:48:16 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-11-24 23:28:15 +0100
commitf72cb6d8b4ee6aad7af88e5cb8fc14518d034e7a (patch)
tree10aa643c634bc87d5075bd42dfa93818e8fcbc62 /perl-install
parent99edef45e47724a65daafbe0c3b9ad367258f820 (diff)
downloaddrakx-f72cb6d8b4ee6aad7af88e5cb8fc14518d034e7a.tar
drakx-f72cb6d8b4ee6aad7af88e5cb8fc14518d034e7a.tar.gz
drakx-f72cb6d8b4ee6aad7af88e5cb8fc14518d034e7a.tar.bz2
drakx-f72cb6d8b4ee6aad7af88e5cb8fc14518d034e7a.tar.xz
drakx-f72cb6d8b4ee6aad7af88e5cb8fc14518d034e7a.zip
perlish $adjustment->value => adjustment->get_value
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/mygtk3.pm2
-rwxr-xr-xperl-install/standalone/drakclock2
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm
index af2447722..aa91f5217 100644
--- a/perl-install/mygtk3.pm
+++ b/perl-install/mygtk3.pm
@@ -1448,7 +1448,7 @@ sub _allow_scroll_TextView_to_bottom {
sub {
my ($o_force) = @_;
my $adjustment = $scrolledWindow->get_vadjustment;
- if ($o_force || $adjustment->get_property("page_size") + $adjustment->value == $adjustment->upper) {
+ if ($o_force || $adjustment->get_property("page_size") + $adjustment->get_value == $adjustment->upper) {
flush(); #- one must flush before scrolling to end, otherwise the text just added *may* not be taken into account correctly, and so it doesn't really scroll to end
$textView->scroll_to_mark($textView->get_buffer->get_mark('end'), 0, 1, 0, 1);
}
diff --git a/perl-install/standalone/drakclock b/perl-install/standalone/drakclock
index 6965d6b91..5e38ff6e3 100755
--- a/perl-install/standalone/drakclock
+++ b/perl-install/standalone/drakclock
@@ -315,7 +315,7 @@ sub determine_radian {
sub draw {
my ($widget, $event) = @_;
- my ($x, $y, $width, $height) = $event->area->values;
+ my ($x, $y, $width, $height) = $event->area->get_values;
$widget->get_window->draw_drawable($widget->style->fg_gc('normal'), $pixmap, $x, $y, $x, $y, $width, $height);
0;
}