remvoed wxFileDialogBase::m_parent as there is already one in wxWindow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-11-08 01:33:33 +00:00
parent 153958f72d
commit 1e966cc4c8
2 changed files with 2 additions and 3 deletions

View File

@ -109,7 +109,6 @@ public:
protected:
wxString m_message;
long m_dialogStyle;
wxWindow *m_parent;
wxString m_dir;
wxString m_path; // Full path
wxString m_fileName;

View File

@ -34,8 +34,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxFileDialogBase, wxDialog)
void wxFileDialogBase::Init()
{
m_filterIndex = m_dialogStyle = 0;
m_parent = NULL;
m_filterIndex =
m_dialogStyle = 0;
}
bool wxFileDialogBase::Create(wxWindow *parent,