From 5cb837400e5ea7ae1427265bfcf8675136b8a7d1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 19 Apr 2007 22:13:21 +0000 Subject: [PATCH] compilation fix (misplaced comma in OnIdle) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/controls/controls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__ -- 2.50.0