diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-16 23:16:19 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-10-16 23:16:19 (GMT) |
commit | 848364b8e8cc124ed6141544d11a5c3382dace4a (patch) | |
tree | d00e027b4e818f10f42ac9bf9c4343fc64c2583c /Tests/UseWX/WX.cxx | |
parent | 27476dabd91bf30720b35e412457a945abf4cbab (diff) | |
download | CMake-848364b8e8cc124ed6141544d11a5c3382dace4a.zip CMake-848364b8e8cc124ed6141544d11a5c3382dace4a.tar.gz CMake-848364b8e8cc124ed6141544d11a5c3382dace4a.tar.bz2 |
ENH: We do not really need streams. Also fix the test on windows
Diffstat (limited to 'Tests/UseWX/WX.cxx')
-rw-r--r-- | Tests/UseWX/WX.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/UseWX/WX.cxx b/Tests/UseWX/WX.cxx index f8d8b20..69717bb 100644 --- a/Tests/UseWX/WX.cxx +++ b/Tests/UseWX/WX.cxx @@ -51,7 +51,7 @@ bool MyApp::OnInit() //Testing if link to wx debug library #ifdef __WXDEBUG__ - std::cout << "If you read this you're in debug mode." << std::endl; + printf("If you read this you're in debug mode.\n"); #endif //__WXDEBUG__ wxChar ch = wxT('*'); |