removed unneeded prototype

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-06-09 15:38:09 +00:00
parent bd8465ff4e
commit 45b8a2566d
2 changed files with 2 additions and 6 deletions

View File

@@ -804,9 +804,7 @@ public:
virtual void DoUpdateWindowUI(wxUpdateUIEvent& event) ;
#if wxUSE_MENUS
bool PopupMenu(wxMenu *menu)
{ return DoPopupMenu(menu, -1, -1); }
bool PopupMenu(wxMenu *menu, const wxPoint& pos)
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); }