bug preventing compilation of wxLogGui under !Windows corrected
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -454,8 +454,8 @@ void wxLogGui::DoLog(wxLogLevel level, const char *szString)
|
|||||||
OutputDebugString("\n\r");
|
OutputDebugString("\n\r");
|
||||||
#else //!WIN32
|
#else //!WIN32
|
||||||
// send them to stderr
|
// send them to stderr
|
||||||
printf(stderr, level == Trace ? "Trace: %s\n"
|
fprintf(stderr, level == wxLOG_Trace ? "Trace: %s\n"
|
||||||
: "Debug: %s\n", szString);
|
: "Debug: %s\n", szString);
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
#endif // WIN32
|
#endif // WIN32
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user