]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/aboutdlg.cpp
Use Ok/Cancel dialog instead of Yes/No one in CheckFit().
[wxWidgets.git] / src / msw / aboutdlg.cpp
index 123e9823e03f2edcd20306826d37d72243906285..526552fd89077f87f468205b96826c6319c57452 100644 (file)
@@ -50,14 +50,14 @@ void wxAboutBox(const wxAboutDialogInfo& info, wxWindow* parent)
         msg << name;
         if ( info.HasVersion() )
         {
-            msg << _T('\n');
+            msg << wxT('\n');
             msg << wxString::Format(_("Version %s"), info.GetVersion());
         }
 
-        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();