]> git.saurik.com Git - wxWidgets.git/commitdiff
wxFilePickerCtrl's button should know if it has an associated text control
authorRobert Roebling <robert@roebling.de>
Thu, 12 Feb 2009 21:09:20 +0000 (21:09 +0000)
committerRobert Roebling <robert@roebling.de>
Thu, 12 Feb 2009 21:09:20 +0000 (21:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/filepicker.h

index b4450c93d63154a969e7707e339d3777b25cf482..7e14d097d9b031bd1f311b3e1dcd7553265ad9ca 100644 (file)
@@ -307,7 +307,7 @@ protected:
     long GetPickerStyle(long style) const
     {
         return (style & (wxFLP_OPEN|wxFLP_SAVE|wxFLP_OVERWRITE_PROMPT|
-                            wxFLP_FILE_MUST_EXIST|wxFLP_CHANGE_DIR));
+                            wxFLP_FILE_MUST_EXIST|wxFLP_CHANGE_DIR|wxFLP_USE_TEXTCTRL));
     }
 
 private:
@@ -409,7 +409,7 @@ protected:
 
     // extracts the style for our picker from wxFileDirPickerCtrlBase's style
     long GetPickerStyle(long style) const
-        { return (style & (wxDIRP_DIR_MUST_EXIST|wxDIRP_CHANGE_DIR)); }
+        { return (style & (wxDIRP_DIR_MUST_EXIST|wxDIRP_CHANGE_DIR|wxDIRP_USE_TEXTCTRL)); }
 
 private:
     DECLARE_DYNAMIC_CLASS(wxDirPickerCtrl)