]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/help.i
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / src / help.i
index ea1bb8ad543e7ad262907fe415a6172d1485f373..3d2ad7bc787453a5f1c99857948ec0fd2054122d 100644 (file)
@@ -73,21 +73,6 @@ public:
 
 //---------------------------------------------------------------------------
 
-
-class wxContextMenuEvent : public wxCommandEvent
-{
-public:
-    wxContextMenuEvent(wxEventType type = wxEVT_NULL,
-                       wxWindowID id = 0,
-                       const wxPoint& pt = wxDefaultPosition);
-    const wxPoint& GetPosition();
-    void SetPosition(const wxPoint& pos);
-};
-
-
-
-//----------------------------------------------------------------------
-
 class wxContextHelp : public wxObject {
 public:
     wxContextHelp(wxWindow* window = NULL, bool doNow = TRUE);
@@ -120,8 +105,8 @@ public:
 
     // Virtuals...
     wxString GetHelp(const wxWindow *window);
-    bool ShowHelp(wxWindowBase *window);
-    void AddHelp(wxWindowBase *window, const wxString& text);
+    bool ShowHelp(wxWindow *window);
+    void AddHelp(wxWindow *window, const wxString& text);
     %name(AddHelpById)void AddHelp(wxWindowID id, const wxString& text);
 
     %addmethods { void Destroy() { delete self; } }