64-bit warning fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -125,7 +125,7 @@ public:
|
||||
void OnLboxSelect(wxCommandEvent& event);
|
||||
void OnLboxDClick(wxCommandEvent& event)
|
||||
{
|
||||
wxLogMessage(_T("Listbox item %ld double clicked."), event.GetInt());
|
||||
wxLogMessage(_T("Listbox item %d double clicked."), event.GetInt());
|
||||
}
|
||||
|
||||
private:
|
||||
@@ -386,7 +386,7 @@ void MyFrame::OnSetSelFgCol(wxCommandEvent& event)
|
||||
|
||||
void MyFrame::OnLboxSelect(wxCommandEvent& event)
|
||||
{
|
||||
wxLogMessage(_T("Listbox selection is now %ld."), event.GetInt());
|
||||
wxLogMessage(_T("Listbox selection is now %d."), event.GetInt());
|
||||
|
||||
if ( m_hlbox->HasMultipleSelection() )
|
||||
{
|
||||
|
Reference in New Issue
Block a user