X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..da2f117200f2933478d571d2d9e6d636dbbd0e4c:/src/palmos/filedlg.cpp

diff --git a/src/palmos/filedlg.cpp b/src/palmos/filedlg.cpp
index 7051ff5aae..d03ec1b742 100644
--- a/src/palmos/filedlg.cpp
+++ b/src/palmos/filedlg.cpp
@@ -26,10 +26,11 @@
 
 #if wxUSE_FILEDLG && !defined(__SMARTPHONE__)
 
+#include "wx/filedlg.h"
+
 #ifndef WX_PRECOMP
     #include "wx/utils.h"
     #include "wx/msgdlg.h"
-    #include "wx/filedlg.h"
     #include "wx/filefn.h"
     #include "wx/intl.h"
     #include "wx/log.h"
@@ -37,8 +38,6 @@
     #include "wx/math.h"
 #endif
 
-#include "wx/palmos/private.h"
-
 #include <stdlib.h>
 #include <string.h>
 
@@ -75,8 +74,10 @@ wxFileDialog::wxFileDialog(wxWindow *parent,
                            const wxString& defaultFileName,
                            const wxString& wildCard,
                            long style,
-                           const wxPoint& pos)
-             :wxFileDialogBase(parent, message, defaultDir, defaultFileName, wildCard, style, pos)
+                           const wxPoint& pos,
+                           const wxSize& sz,
+                           const wxString& name)
+             :wxFileDialogBase(parent, message, defaultDir, defaultFileName, wildCard, style, pos, sz, name)
 
 {
 }
@@ -99,4 +100,3 @@ int wxFileDialog::ShowModal()
 }
 
 #endif // wxUSE_FILEDLG
-