]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
remove redundant m_buffer_size member (patch 1861348)
[wxWidgets.git] / include / wx / window.h
index 17be18c237cffd9dfe2c5039506d82e80c93d646..6bc220b4d3665f6c231944bfec8dfab8cf3e0dff 100644 (file)
@@ -1046,9 +1046,8 @@ public:
     // show popup menu at the given position, generate events for the items
     // selected in it
     bool PopupMenu(wxMenu *menu, const wxPoint& pos = wxDefaultPosition)
-        { return DoPopupMenu(menu, pos.x, pos.y); }
-    bool PopupMenu(wxMenu *menu, int x, int y)
-        { return DoPopupMenu(menu, x, y); }
+        { return PopupMenu(menu, pos.x, pos.y); }
+    bool PopupMenu(wxMenu *menu, int x, int y);
 
     // simply return the id of the selected item or wxID_NONE without
     // generating any events