]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/msgout.cpp
Applied [ 1213375 ] MSW wxMediaCtrl minor debugging and cleanup
[wxWidgets.git] / src / common / msgout.cpp
index 87d9e708d4b6a39c4c3f9bbc326984684511f600..3e9471de8dfe71cb956ca8fbd196c04306993ce1 100755 (executable)
@@ -92,6 +92,21 @@ wxMessageOutput* wxMessageOutput::Set(wxMessageOutput* msgout)
 // wxMessageOutputBest
 // ----------------------------------------------------------------------------
 
+#ifdef __WINDOWS__
+
+// check if we're running in a console under Windows
+static inline bool IsInConsole()
+{
+#ifdef __WXWINCE__
+    return false;
+#else // !__WXWINCE__
+    HANDLE hStdErr = ::GetStdHandle(STD_ERROR_HANDLE);
+    return hStdErr && hStdErr != INVALID_HANDLE_VALUE;
+#endif // __WXWINCE__/!__WXWINCE__
+}
+
+#endif // __WINDOWS__
+
 void wxMessageOutputBest::Printf(const wxChar* format, ...)
 {
     va_list args;
@@ -102,9 +117,7 @@ void wxMessageOutputBest::Printf(const wxChar* format, ...)
     va_end(args);
 
 #ifdef __WINDOWS__
-    // check if we're running in a console
-    HANDLE hStdErr = ::GetStdHandle(STD_ERROR_HANDLE);
-    if ( !hStdErr || hStdErr == INVALID_HANDLE_VALUE )
+    if ( !IsInConsole() )
     {
         ::MessageBox(NULL, out, _T("wxWidgets"), MB_ICONINFORMATION | MB_OK);
     }