]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/notebook.h
Don't duplicate event sending code in wxGTK wxListBox.
[wxWidgets.git] / include / wx / notebook.h
index b636d5910d1db67f909fd4b78c9ca62731f1e7be..7810274385e339b43c913e90ed4bc4f750b4be12 100644 (file)
@@ -96,15 +96,15 @@ public:
     bool SendPageChangingEvent(int nPage);
 
     // sends the event about page change from old to new (or GetSelection() if
     bool SendPageChangingEvent(int nPage);
 
     // sends the event about page change from old to new (or GetSelection() if
-    // new is -1)
-    void SendPageChangedEvent(int nPageOld, int nPageNew = -1);
+    // new is wxNOT_FOUND)
+    void SendPageChangedEvent(int nPageOld, int nPageNew = wxNOT_FOUND);
 
     // wxBookCtrlBase overrides this method to return false but we do need
     // focus because we have tabs
     virtual bool AcceptsFocus() const { return wxControl::AcceptsFocus(); }
 
 protected:
 
     // wxBookCtrlBase overrides this method to return false but we do need
     // focus because we have tabs
     virtual bool AcceptsFocus() const { return wxControl::AcceptsFocus(); }
 
 protected:
-    DECLARE_NO_COPY_CLASS(wxNotebookBase)
+    wxDECLARE_NO_COPY_CLASS(wxNotebookBase);
 };
 
 // ----------------------------------------------------------------------------
 };
 
 // ----------------------------------------------------------------------------