add size parameter to the generic wxFileDialog ctor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57114 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -131,7 +131,7 @@ private:
|
|||||||
class WXDLLIMPEXP_CORE wxFileDialog: public wxGenericFileDialog
|
class WXDLLIMPEXP_CORE wxFileDialog: public wxGenericFileDialog
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxFileDialog() {}
|
wxFileDialog() {}
|
||||||
|
|
||||||
wxFileDialog(wxWindow *parent,
|
wxFileDialog(wxWindow *parent,
|
||||||
const wxString& message = wxFileSelectorPromptStr,
|
const wxString& message = wxFileSelectorPromptStr,
|
||||||
@@ -139,8 +139,12 @@ public:
|
|||||||
const wxString& defaultFile = wxEmptyString,
|
const wxString& defaultFile = wxEmptyString,
|
||||||
const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
|
const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
|
||||||
long style = 0,
|
long style = 0,
|
||||||
const wxPoint& pos = wxDefaultPosition)
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
:wxGenericFileDialog(parent, message, defaultDir, defaultFile, wildCard, style, pos)
|
const wxSize& size = wxDefaultSize)
|
||||||
|
:wxGenericFileDialog(parent, message,
|
||||||
|
defaultDir, defaultFile, wildCard,
|
||||||
|
style,
|
||||||
|
pos, size)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user