]> git.saurik.com Git - wxWidgets.git/commitdiff
minor change: differentiate the initial banner of test.exe from test_gui.exe
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 1 Jun 2009 14:46:44 +0000 (14:46 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 1 Jun 2009 14:46:44 +0000 (14:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/image/image.cpp
tests/test.cpp

index e1fcac54b3582c6b942c39f87a3ccc3d178b3826..f05707927c96af674cdd1609081edad97d241112 100644 (file)
@@ -23,6 +23,7 @@
 
 #include "wx/image.h"
 #include "wx/url.h"
+#include "wx/log.h"
 #include "wx/mstream.h"
 #include "wx/zstream.h"
 #include "wx/wfstream.h"
index 758c5fcb1a4e404bc2a4699a3ad0fc96c798719f..067af9edd172c4612be565a2b7afefb64310b44c 100644 (file)
@@ -385,7 +385,11 @@ bool TestApp::OnInit()
     if ( !TestAppBase::OnInit() )
         return false;
 
-    cout << "Test program for wxWidgets\n"
+#if wxUSE_GUI
+    cout << "Test program for wxWidgets GUI features\n"
+#else
+    cout << "Test program for wxWidgets non-GUI features\n"
+#endif
          << "build: " << WX_BUILD_OPTIONS_SIGNATURE << std::endl;
 
 #if wxUSE_GUI