From: Vadim Zeitlin Date: Sun, 5 Jul 2009 13:10:46 +0000 (+0000) Subject: really fix compilation fix after last change X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f106c625bd4a960e1e03f777ccb6e8b72f1c8c3e really fix compilation fix after last change git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/collpane/collpane.cpp b/samples/collpane/collpane.cpp index f989d1fe36..2cd10c25c9 100644 --- a/samples/collpane/collpane.cpp +++ b/samples/collpane/collpane.cpp @@ -328,9 +328,9 @@ void MyDialog::OnAlignButton(wxCommandEvent& WXUNUSED(ev)) Layout(); } -void MyDialog::OnPaneChanged(wxCollapsiblePaneEvent& WXUNUSED_UNLESS_DEBUG(event)) +void MyDialog::OnPaneChanged(wxCollapsiblePaneEvent& event) { - wxLogDebug(wxT("The pane has just been %s by the user"), + wxLogMessage(wxT("The pane has just been %s by the user"), event.GetCollapsed() ? wxT("collapsed") : wxT("expanded")); }