fix harmless unused parameter warning

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-09-26 00:39:04 +00:00
parent 0ec1179b86
commit c8fe7fda21

View File

@ -412,7 +412,9 @@ bool wxTextCtrlBase::EmulateKeyPress(const wxKeyEvent& event)
return true;
}
#endif // !__WIN32__
#else // __WIN32__
wxUnusedVar(event);
#endif // !__WIN32__/__WIN32__
return false;
}