summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-23 20:50:54 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-23 20:50:54 +0000
commit85d8c5e7278f0cd99191aef911a879a922a0b472 (patch)
tree654a07021cda3285d5a3dd6421052149d5efa502 /perl-install/ugtk2.pm
parent10a3fcee8514466f0c462bfc875f00dfcc3f9f48 (diff)
downloaddrakx-85d8c5e7278f0cd99191aef911a879a922a0b472.tar
drakx-85d8c5e7278f0cd99191aef911a879a922a0b472.tar.gz
drakx-85d8c5e7278f0cd99191aef911a879a922a0b472.tar.bz2
drakx-85d8c5e7278f0cd99191aef911a879a922a0b472.tar.xz
drakx-85d8c5e7278f0cd99191aef911a879a922a0b472.zip
help perl_checker
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 364bea2c9..65f07cc0d 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -1310,7 +1310,7 @@ sub toggle_expansion {
# compatible with Combo since its API is quite nice.
package Gtk2::OptionMenu;
-use common;
+use MDK::Common;
# try to get combox <==> option menu mapping
sub set_popdown_strings {
@@ -1356,7 +1356,7 @@ sub set_text {
package Gtk2::ComboBox;
-use common;
+use MDK::Common;
# try to get combox <==> option menu mapping
sub set_popdown_strings {
@@ -1516,7 +1516,7 @@ sub calc_size {
sub GET_SIZE {
my ($cell, $widget, $_cell_area) = @_;
- my $layout = $cell->get_layout($widget);
+ my $layout = get_layout($cell, $widget);
$layout->set_text($cell->get('label'));
return calc_size($cell, $layout);
@@ -1540,7 +1540,7 @@ sub RENDER { # not that efficient...
: 'normal';
}
- my $layout = $cell->get_layout($widget);
+ my $layout = get_layout($cell, $widget);
$layout->set_text($cell->get('label'));
my $is_rtl = lang::text_direction_rtl();