]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tabctrl.cpp
document On{Open,Save}Document()
[wxWidgets.git] / src / msw / tabctrl.cpp
index d55fd09bca27d2088ecf6e377c932de4bb0e0d8a..ddb0255c42a4b90bb870df4ff8465e37d88cb3b6 100644 (file)
@@ -98,7 +98,7 @@ bool wxTabCtrl::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos, cons
     tabStyle,    // Styles and defaults.
     x, y, width, height,                    // Standard size and position.
     (HWND) parent->GetHWND(),               // Parent window
-    (HMENU)m_windowId,                      // ID.
+    (HMENU)m_windowId.GetValue(),           // ID.
     wxGetInstance(),                        // Current instance.
     NULL );                                 // No class data.
 
@@ -149,7 +149,7 @@ bool wxTabCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
     event.SetInt(idCtrl) ;
     event.SetSelection(idCtrl);
 
-    return GetEventHandler()->ProcessEvent(event);
+    return HandleWindowEvent(event);
 }
 
 // Responds to colour changes, and passes event on to children.