Added style parameter to wxPopupWindow ctors so they match the Create method.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11959 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-10-12 18:11:46 +00:00
parent 337a001037
commit 758bce950b
6 changed files with 17 additions and 13 deletions

View File

@@ -147,11 +147,11 @@ void wxPopupTransientWindow::Init()
m_focus = (wxWindow *)NULL;
}
wxPopupTransientWindow::wxPopupTransientWindow(wxWindow *parent)
wxPopupTransientWindow::wxPopupTransientWindow(wxWindow *parent, int style)
{
Init();
(void)Create(parent);
(void)Create(parent, style);
}
wxPopupTransientWindow::~wxPopupTransientWindow()