X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5f6475c145b713efc0c3d8b482338438e927b763..55420742a101b2963c40694cb879ea3de4fb6bb2:/src/common/filepickercmn.cpp?ds=sidebyside diff --git a/src/common/filepickercmn.cpp b/src/common/filepickercmn.cpp index 1282f2386d..97e1913b34 100644 --- a/src/common/filepickercmn.cpp +++ b/src/common/filepickercmn.cpp @@ -37,6 +37,13 @@ // implementation // ============================================================================ +const wxChar wxFilePickerCtrlNameStr[] = wxT("filepicker"); +const wxChar wxFilePickerWidgetNameStr[] = wxT("filepickerwidget"); +const wxChar wxDirPickerCtrlNameStr[] = wxT("dirpicker"); +const wxChar wxDirPickerWidgetNameStr[] = wxT("dirpickerwidget"); +const wxChar wxFilePickerWidgetLabel[] = wxT("Browse"); +const wxChar wxDirPickerWidgetLabel[] = wxT("Browse"); + DEFINE_EVENT_TYPE(wxEVT_COMMAND_FILEPICKER_CHANGED) DEFINE_EVENT_TYPE(wxEVT_COMMAND_DIRPICKER_CHANGED) IMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent, wxCommandEvent) @@ -59,7 +66,7 @@ bool wxFileDirPickerCtrlBase::CreateBase(wxWindow *parent, wxASSERT_MSG(path.empty() || CheckPath(path), wxT("Invalid initial path!")); if (!wxPickerBase::CreateBase(parent, id, path, pos, size, - style, validator, name, wxTE_FILENAME)) + style, validator, name)) return false; if (!HasFlag(wxFLP_OPEN) && !HasFlag(wxFLP_SAVE))