gcc 3.1 warning fixes (patch 598343)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16687 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-08-22 19:22:52 +00:00
parent 5f3455052c
commit 8b1d8f3611
4 changed files with 13 additions and 7 deletions

View File

@@ -707,8 +707,8 @@ void MyTextCtrl::OnKeyDown(wxKeyEvent& event)
wxLogMessage( _T("Current position: %ld\nCurrent line, column: (%ld, %ld)\nNumber of lines: %ld\nCurrent line length: %ld\nTotal text length: %u (%ld)"),
pos,
line, column,
GetNumberOfLines(),
GetLineLength(line),
(long) GetNumberOfLines(),
(long) GetLineLength(line),
GetValue().length(),
GetLastPosition());
}
@@ -1204,7 +1204,7 @@ void MyFrame::OnIdle( wxIdleEvent& event )
#endif
s_windowFocus
#ifdef __WXMSW__
, s_windowFocus->GetHWND()
, (unsigned int) s_windowFocus->GetHWND()
#endif
);