summaryrefslogtreecommitdiff
path: root/app-i18n/poedit/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-03-02 15:59:12 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-03-02 15:59:12 +0000
commit06a7b5647e11a8ddf69b1c3d3ded6a8ba28b923e (patch)
tree8d58c1f4b049da677b33209b072f2b3057268fe0 /app-i18n/poedit/files
parent99abbc5e5a6ecd3fc981b45646fd8cb5d320377b (diff)
gentoo resync : 02.03.2018
Diffstat (limited to 'app-i18n/poedit/files')
-rw-r--r--app-i18n/poedit/files/poedit-1.5.5-wx28.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/app-i18n/poedit/files/poedit-1.5.5-wx28.patch b/app-i18n/poedit/files/poedit-1.5.5-wx28.patch
deleted file mode 100644
index f10c731c597a..000000000000
--- a/app-i18n/poedit/files/poedit-1.5.5-wx28.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-catalog.cpp:1155:20: error: 'class wxCharBuffer' has no member named 'length'
-
-http://www.poedit.net/trac/ticket/513
-
-
---- a/src/catalog.cpp
-+++ b/src/catalog.cpp
-@@ -1151,8 +1151,13 @@ inline bool CanEncodeStringToCharset(const wxString& s, wxMBConv& conv)
- {
- if (s.empty())
- return true;
-- wxCharBuffer converted(s.mb_str(conv));
-+ const wxCharBuffer converted(s.mb_str(conv));
-+#if wxCHECK_VERSION(2,9,0)
- if ( converted.length() == 0 )
-+#else
-+ const char *cs = (const char*)converted;
-+ if ( cs == NULL || strlen(cs) == 0 )
-+#endif
- return false;
- return true;
- }