diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-19 21:37:26 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-05 14:16:06 +0100 |
commit | 1a277c56674f3c6d60951c1f2a1312f1cd9235fe (patch) | |
tree | 927bfa97152c780879ab9ae4d9e4999e24c9d5a4 /Rpmdrake/formatting.pm | |
parent | 0eb2e246db5367e5149bec12197e41707aeb7daf (diff) | |
download | rpmdrake-1a277c56674f3c6d60951c1f2a1312f1cd9235fe.tar rpmdrake-1a277c56674f3c6d60951c1f2a1312f1cd9235fe.tar.gz rpmdrake-1a277c56674f3c6d60951c1f2a1312f1cd9235fe.tar.bz2 rpmdrake-1a277c56674f3c6d60951c1f2a1312f1cd9235fe.tar.xz rpmdrake-1a277c56674f3c6d60951c1f2a1312f1cd9235fe.zip |
use (my|u)gtk3 instead of *tk2
Diffstat (limited to 'Rpmdrake/formatting.pm')
-rw-r--r-- | Rpmdrake/formatting.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Rpmdrake/formatting.pm b/Rpmdrake/formatting.pm index 9ff8d569..1bc6ba0d 100644 --- a/Rpmdrake/formatting.pm +++ b/Rpmdrake/formatting.pm @@ -29,7 +29,7 @@ use POSIX qw(strftime); use rpmdrake; use lib qw(/usr/lib/libDrakX); use common; -use ugtk2 qw(escape_text_for_TextView_markup_format); +use ugtk3 qw(escape_text_for_TextView_markup_format); use Exporter; our @ISA = qw(Exporter); @@ -105,7 +105,7 @@ sub pkg2medium { # [ duplicate urpmi's urpm::msg::localtime2changelog() ] #- strftime returns a string in the locale charset encoding; -#- but gtk2 requires UTF-8, so we use to_utf8() to ensure the +#- but gtk3 requires UTF-8, so we use to_utf8() to ensure the #- output of localtime2changelog() is always in UTF-8 #- as to_utf8() uses LC_CTYPE for locale encoding and strftime() uses LC_TIME, #- it doesn't work if those two variables have values with different |