fix unused variable warning (part of #10162)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57461 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -151,7 +151,7 @@ SimpleTransientPopup::~SimpleTransientPopup()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void SimpleTransientPopup::Popup(wxWindow *focus)
|
void SimpleTransientPopup::Popup(wxWindow* WXUNUSED(focus))
|
||||||
{
|
{
|
||||||
wxLogMessage( wxT("0x%lx SimpleTransientPopup::Popup"), long(this) );
|
wxLogMessage( wxT("0x%lx SimpleTransientPopup::Popup"), long(this) );
|
||||||
wxPopupTransientWindow::Popup();
|
wxPopupTransientWindow::Popup();
|
||||||
@@ -380,7 +380,7 @@ MyFrame::~MyFrame()
|
|||||||
|
|
||||||
// event handlers
|
// event handlers
|
||||||
|
|
||||||
void MyFrame::OnActivate(wxActivateEvent& event)
|
void MyFrame::OnActivate(wxActivateEvent& WXUNUSED(event))
|
||||||
{
|
{
|
||||||
wxLogMessage( wxT("In activate...") );
|
wxLogMessage( wxT("In activate...") );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user