minor change: differentiate the initial banner of test.exe from test_gui.exe

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi 2009-06-01 14:46:44 +00:00
parent c99214eb52
commit 9e91447ca4
2 changed files with 6 additions and 1 deletions

View 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"

View 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