diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-10-07 10:32:39 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-10-07 10:32:39 +0000 |
commit | ce853a1a6fc6182428d1d73300a09c7367ed51af (patch) | |
tree | 0f3320904896ec4878ae27bec9ab001185869e42 | |
parent | 6727ec49877128200369488980b13c14dfd7ad72 (diff) | |
download | mgaonline-ce853a1a6fc6182428d1d73300a09c7367ed51af.tar mgaonline-ce853a1a6fc6182428d1d73300a09c7367ed51af.tar.gz mgaonline-ce853a1a6fc6182428d1d73300a09c7367ed51af.tar.bz2 mgaonline-ce853a1a6fc6182428d1d73300a09c7367ed51af.tar.xz mgaonline-ce853a1a6fc6182428d1d73300a09c7367ed51af.zip |
perl_checker cleanups
-rwxr-xr-x | mdkapplet | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -387,14 +387,14 @@ sub confirm_upgrade() { ), gtknew('Label_Left', text => N("A new stable distribution has been released."), # workaround infamous 6 years old gnome bug #101968: - width => $width -50), + width => $width - 50), gtknew('HButtonBox', layout => 'start', children_tight => [ my $link = Gtk2::LinkButton->new($new_distro->{url}, N("More info about this new version")), ]), gtknew('Label_Left', text => N("Do you want to upgrade to the '\%s' distribution?", $new_distro->{name} || $new_distro->{version}), # workaround infamous 6 years old gnome bug #101968: - width => $width -50), + width => $width - 50), gtknew('CheckButton', text => N("Do not ask me next time"), active_ref => \$warn_me), create_okcancel($w, N("Yes"), N("No")), ]), @@ -543,7 +543,7 @@ sub silentCheck() { $exit->('no_enabled_medium'); } - if (my $db = urpm::db_open_or_die($urpm)) { + if (my $_db = urpm::db_open_or_die($urpm)) { my $requested = {}; my $state = {}; my $need_restart = urpm::select::resolve_dependencies( |