From 9e91447ca4738069384ece27f3c3dae6c7a5b31e Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Mon, 1 Jun 2009 14:46:44 +0000 Subject: [PATCH] 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 --- tests/image/image.cpp | 1 + tests/test.cpp | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/image/image.cpp b/tests/image/image.cpp index e1fcac54b3..f05707927c 100644 --- a/tests/image/image.cpp +++ b/tests/image/image.cpp @@ -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" diff --git a/tests/test.cpp b/tests/test.cpp index 758c5fcb1a..067af9edd1 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -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 -- 2.45.2