]> git.saurik.com Git - wxWidgets.git/commitdiff
Bump copyright date and indicate debug builds too in 'easter egg' dialog.
authorRon Lee <ron@debian.org>
Fri, 15 Oct 2004 07:25:40 +0000 (07:25 +0000)
committerRon Lee <ron@debian.org>
Fri, 15 Oct 2004 07:25:40 +0000 (07:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29870 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/wincmn.cpp

index c15d4f4da929cf678e51a1a6442db9973087b990..115b91a2c6fe22528444aaa80b4710cfe5fb4a4d 100644 (file)
@@ -2199,7 +2199,7 @@ void wxWindowBase::OnMiddleClick( wxMouseEvent& event )
 
         wxMessageBox(wxString::Format(
                                       _T(
-                                        "       wxWidgets Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n   Copyright (c) 1995-2002 wxWidgets team"
+                                        "       wxWidgets Library (%s port)\nVersion %u.%u.%u%s%s, compiled at %s %s\n   Copyright (c) 1995-2004 wxWidgets team"
                                         ),
                                       port.c_str(),
                                       wxMAJOR_VERSION,
@@ -2209,6 +2209,11 @@ void wxWindowBase::OnMiddleClick( wxMouseEvent& event )
                                       L" (Unicode)",
 #else
                                       "",
+#endif
+#if __WXDEBUG__
+                                      _T(" Debug build"),
+#else
+                                      _T(""),
 #endif
                                       __TDATE__,
                                       __TTIME__