]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/aboutdlg.cpp
Output the extracted number from wxString::ToXXX() even if it returns false.
[wxWidgets.git] / src / msw / aboutdlg.cpp
index 123e9823e03f2edcd20306826d37d72243906285..1259a214e75581293385d97fafc7b0e53dcaf1c6 100644 (file)
@@ -50,14 +50,14 @@ void wxAboutBox(const wxAboutDialogInfo& info, wxWindow* parent)
         msg << name;
         if ( info.HasVersion() )
         {
-            msg << _T('\n');
-            msg << wxString::Format(_("Version %s"), info.GetVersion());
+            msg << wxT('\n');
+            msg << info.GetLongVersion();
         }
 
-        msg << _T("\n\n");
+        msg << wxT("\n\n");
 
         if ( info.HasCopyright() )
-            msg << info.GetCopyrightToDisplay() << _T('\n');
+            msg << info.GetCopyrightToDisplay() << wxT('\n');
 
         // add everything remaining
         msg << info.GetDescriptionAndCredits();