diff options
Diffstat (limited to 'shared/dir_picker_i18n.h')
-rw-r--r-- | shared/dir_picker_i18n.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/shared/dir_picker_i18n.h b/shared/dir_picker_i18n.h deleted file mode 100644 index 89b54bf4..00000000 --- a/shared/dir_picker_i18n.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef DIR_PICKER_I18N_H_INCLUDED -#define DIR_PICKER_I18N_H_INCLUDED - -#include <wx/filepicker.h> -#include "i18n.h" - - -class FfsDirPickerCtrl : public wxDirPickerCtrl -{ -public: - FfsDirPickerCtrl(wxWindow* parent, wxWindowID id, - const wxString& path = wxEmptyString, - const wxString& message = wxDirSelectorPromptStr, - const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - long style = wxDIRP_DEFAULT_STYLE, - const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxDirPickerCtrlNameStr) : - wxDirPickerCtrl(parent, id, path, message, pos, size, style, validator, name) - { -#ifdef FFS_WIN - //fix wxWidgets localization gap: - wxButton* button = dynamic_cast<wxButton*>(m_pickerIface); - if (button) button->SetLabel(_("Browse")); -#endif - } -}; - - -#endif // DIR_PICKER_I18N_H_INCLUDED |