summaryrefslogtreecommitdiff
path: root/wxWidgets-Fix/filepicker.h.patch
diff options
context:
space:
mode:
Diffstat (limited to 'wxWidgets-Fix/filepicker.h.patch')
-rw-r--r--wxWidgets-Fix/filepicker.h.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/wxWidgets-Fix/filepicker.h.patch b/wxWidgets-Fix/filepicker.h.patch
new file mode 100644
index 00000000..d72184c4
--- /dev/null
+++ b/wxWidgets-Fix/filepicker.h.patch
@@ -0,0 +1,19 @@
+--- old 2009-03-06 11:00:42.000000000 +0100
++++ include\wx\filepicker.h 2009-10-24 16:55:45.968750000 +0200
+@@ -17,6 +17,7 @@
+ #if wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
+
+ #include "wx/pickerbase.h"
++#include "wx/intl.h"
+
+ class WXDLLIMPEXP_FWD_CORE wxDialog;
+ class WXDLLIMPEXP_FWD_CORE wxFileDirPickerEvent;
+@@ -326,7 +329,7 @@
+ const wxString& message,
+ const wxString& WXUNUSED(wildcard))
+ {
+- return new wxDirPickerWidget(parent, wxID_ANY, wxDirPickerWidgetLabel,
++ return new wxDirPickerWidget(parent, wxID_ANY, _("Browse"),
+ path, message,
+ wxDefaultPosition, wxDefaultSize,
+ GetPickerStyle(GetWindowStyle()));
bgstack15