]> git.saurik.com Git - wxWidgets.git/commitdiff
really fix compilation fix after last change
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 5 Jul 2009 13:10:46 +0000 (13:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 5 Jul 2009 13:10:46 +0000 (13:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/collpane/collpane.cpp

index f989d1fe3695d19d518268dfe72b7b6f7820a15b..2cd10c25c91fa95995218a348fdecaf950792a52 100644 (file)
@@ -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"));
 }