diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-10-07 13:37:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-10-07 13:37:08 +0000 |
commit | be51991b0fbf6fcec9db77585c076585d9c4dda4 (patch) | |
tree | eb352187057c96bd99aca5775a0dd0370e52edce | |
parent | c3db931aac3e699393ae301eb13912b3c441942f (diff) | |
download | rpmdrake-be51991b0fbf6fcec9db77585c076585d9c4dda4.tar rpmdrake-be51991b0fbf6fcec9db77585c076585d9c4dda4.tar.gz rpmdrake-be51991b0fbf6fcec9db77585c076585d9c4dda4.tar.bz2 rpmdrake-be51991b0fbf6fcec9db77585c076585d9c4dda4.tar.xz rpmdrake-be51991b0fbf6fcec9db77585c076585d9c4dda4.zip |
(mainwindow) fix displayed version in 'About' dialog
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ - do not ask sources on startup - open help & bug report as user instead of as root (#44497) - edit_urpm_sources: + o fix displayed version in 'About' dialog o move "add media" menu entries from the "Options" menu into the "File" menu (#44601) - gurpmi.addmedia: diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index 9b5cfac1..8789883e 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -970,7 +970,7 @@ sub mainwindow() { my $license = formatAlaTeX(translate($::license)); $license =~ s/\n/\n\n/sg; # nicer formatting my $w = gtknew('AboutDialog', name => N("Rpmdrake"), - version => '2007', + version => $rpmdrake::mdk_version, copyright => N("Copyright (C) %s by Mandriva", '2002-2008'), license => $license, wrap_license => 1, comments => N("Rpmdrake is Mandriva Linux package management tool."), |