]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/menu.h
fix monodll build
[wxWidgets.git] / include / wx / msw / menu.h
index 04273f78bc0a18ef0a4e9cd3b76d05e88f5abe21..e3060763487b0229b4bcf7ccb97d4bfb1cefbb57 100644 (file)
@@ -49,6 +49,17 @@ public:
 
     virtual void SetTitle(const wxString& title);
 
+    // deprecated functions
+#if wxUSE_MENU_CALLBACK
+    wxMenu(const wxString& title, const wxFunction func)
+        : wxMenuBase(title)
+    {
+        Init();
+
+        Callback(func);
+    }
+#endif // wxUSE_MENU_CALLBACK
+
     // implementation only from now on
     // -------------------------------
 
@@ -157,6 +168,10 @@ public:
     // call this function to update it (m_menuBarFrame should be !NULL)
     void Refresh();
 
+    // To avoid compile warning
+    void Refresh( bool eraseBackground,
+                          const wxRect *rect = (const wxRect *) NULL ) { wxWindow::Refresh(eraseBackground, rect); }
+
 protected:
     // common part of all ctors
     void Init();