diff options
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/draksplash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index 31a2b99c8..a4477ac76 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -244,7 +244,7 @@ sub create_adj_widgets() { sub create_scale_table { my @settings = @_; gtknew('Table', col_spacings => 10, row_spacings => 5, children => [ map { - my $w = Gtk2::HScale->new($adj{$_}); + my $w = gtknew('HScale', adjustment => $adj{$_}); $w->set_digits(0); [ gtknew('Label', text => $scale_settings{$_}[1]), $w ]; } @settings]); |