diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2012-08-01 17:26:31 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 21:28:33 +0100 |
commit | 602108d3f37701dcecdeb9697c05c3b9d76eb67a (patch) | |
tree | ab635ba0aebbd2dba969c86160eb26423c53c25d /perl-install/mygtk3.pm | |
parent | 504f6c89db28716c7038153fb7838565b4ba0583 (diff) | |
download | drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar.gz drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar.bz2 drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.tar.xz drakx-602108d3f37701dcecdeb9697c05c3b9d76eb67a.zip |
Gtk2::Pango -> Pango
Diffstat (limited to 'perl-install/mygtk3.pm')
-rw-r--r-- | perl-install/mygtk3.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index 9c6fccce4..0c4798e4c 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -420,7 +420,7 @@ sub _gtk__Label { $w->set_justify(delete $opts->{justify}) if exists $opts->{justify}; $w->set_line_wrap(delete $opts->{line_wrap}) if exists $opts->{line_wrap}; $w->set_alignment(@{delete $opts->{alignment}}) if exists $opts->{alignment}; - $w->modify_font(Gtk2::Pango::FontDescription->from_string(delete $opts->{font})) if exists $opts->{font}; + $w->modify_font(Pango::FontDescription->from_string(delete $opts->{font})) if exists $opts->{font}; } if (my $text_ref = delete $opts->{text_ref}) { |