summaryrefslogtreecommitdiff
path: root/math/graphthing/files/patch-src__fancyfileselection.cc
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2012-03-24 16:44:25 +0000
committerMartin Wilke <miwi@FreeBSD.org>2012-03-24 16:44:25 +0000
commit88bef0c59649241ec4c21bedfb974730ceddd161 (patch)
treef7af1de4f35dc6892cb8b393a4c35f73cd033d04 /math/graphthing/files/patch-src__fancyfileselection.cc
parent- Update to 0.35 (diff)
- Fix build with newer wxWidgets
- Add MAKE_JOBS_SAFE PR: 166044 Submitted by: Ports Fury Feature safe: yes
Diffstat (limited to 'math/graphthing/files/patch-src__fancyfileselection.cc')
-rw-r--r--math/graphthing/files/patch-src__fancyfileselection.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/math/graphthing/files/patch-src__fancyfileselection.cc b/math/graphthing/files/patch-src__fancyfileselection.cc
new file mode 100644
index 000000000000..5689f836ddd7
--- /dev/null
+++ b/math/graphthing/files/patch-src__fancyfileselection.cc
@@ -0,0 +1,22 @@
+--- src/fancyfileselection.cc.orig 2006-09-11 10:32:12.000000000 +0900
++++ src/fancyfileselection.cc 2012-02-13 23:12:49.000000000 +0900
+@@ -21,6 +21,10 @@
+ { "Postscript", ".ps" }
+ };
+
++#if !WXWIN_COMPATIBILITY_2_4
++# define wxHIDE_READONLY 0
++#endif
++
+ FancyFileSelection::FancyFileSelection (wxWindow *parent, const wxString &title,
+ long style, bool file_types,
+ const wxString &mask)
+@@ -30,7 +34,7 @@
+ style |= wxHIDE_READONLY;
+ else if (style & wxSAVE)
+ style |= wxOVERWRITE_PROMPT;
+- SetStyle (style);
++ SetWindowStyle (style);
+
+ if (file_types) {
+ wxString wc = wxT("");