compilation fix (misplaced comma in OnIdle)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-04-19 22:13:21 +00:00
parent 378964d49d
commit 5cb837400e

View 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__