aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/fl_editor/files/patch-fltk-wstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits/fl_editor/files/patch-fltk-wstring.h')
-rw-r--r--x11-toolkits/fl_editor/files/patch-fltk-wstring.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/x11-toolkits/fl_editor/files/patch-fltk-wstring.h b/x11-toolkits/fl_editor/files/patch-fltk-wstring.h
deleted file mode 100644
index 9a7de7d66410..000000000000
--- a/x11-toolkits/fl_editor/files/patch-fltk-wstring.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- fltk/wstring.h.orig Thu Dec 21 17:03:29 2006
-+++ fltk/wstring.h Thu Dec 21 17:03:41 2006
-@@ -88,7 +88,7 @@
- long operator>(const char *str) const { return (strcmp(buffer,str) > 0); };
- long operator==(const char *str) const { return (strcmp(buffer,str) == 0); };
- wString& operator=(const char *str) { SSet(str); return (*this); };
-- RCLDLL wString& wString::operator=(const wString& str) { SSet(str.buffer); return (*this); }
-+ RCLDLL wString& operator=(const wString& str) { SSet(str.buffer); return (*this); }
- wString& operator=(const unsigned char *str) { SSet((const char *)str); return *this; };
- operator const char *() const { return Get(); };
- wString& ToUpper() { strupr(buffer); return *this; };