From: Vadim Zeitlin Date: Thu, 19 Apr 2007 22:13:21 +0000 (+0000) Subject: compilation fix (misplaced comma in OnIdle) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5cb837400e5ea7ae1427265bfcf8675136b8a7d1 compilation fix (misplaced comma in OnIdle) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/controls/controls.cpp b/samples/controls/controls.cpp index 8f50189633..6dd4a8fd87 100644 --- a/samples/controls/controls.cpp +++ b/samples/controls/controls.cpp @@ -1945,7 +1945,7 @@ void MyFrame::OnIdle( wxIdleEvent& WXUNUSED(event) ) msg.Printf( _T("Focus: %s") #ifdef __WXMSW__ - _T(", HWND = %08x"), + , _T(", HWND = %08x") #endif , s_windowFocus->GetName().c_str() #ifdef __WXMSW__