]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix (misplaced comma in OnIdle)
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 19 Apr 2007 22:13:21 +0000 (22:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 19 Apr 2007 22:13:21 +0000 (22:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/controls/controls.cpp

index 8f50189633c83aeb6d6c5389db0a98c75a43edaf..6dd4a8fd87dbccd7b8701f883e8ac2647c3ebc9e 100644 (file)
@@ -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__