summaryrefslogtreecommitdiffstats
path: root/office/gbgoffice/patches/12_gcc6.patch
diff options
context:
space:
mode:
author Matteo Bernardini2019-02-23 07:59:47 +0100
committer Matteo Bernardini2019-02-23 07:59:47 +0100
commit1e0504fb667c2e46b7658648e95f6bec2232b005 (patch)
tree59f57dadb63234845f17b82010dc7c5fc11e1446 /office/gbgoffice/patches/12_gcc6.patch
parent56fec0e2e3a00a31f6b83d66093db60a3bbb19f4 (diff)
downloadslackbuilds-current-20190223.1.tar.gz
20190223.1 global branch merge.current-20190223.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'office/gbgoffice/patches/12_gcc6.patch')
-rw-r--r--office/gbgoffice/patches/12_gcc6.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/office/gbgoffice/patches/12_gcc6.patch b/office/gbgoffice/patches/12_gcc6.patch
new file mode 100644
index 0000000000..2ec2c344f4
--- /dev/null
+++ b/office/gbgoffice/patches/12_gcc6.patch
@@ -0,0 +1,21 @@
+Description: fixes compilation with GCC-6
+ return type must be Translator* and can't be boolean
+Author: Damyan Ivanov <dmn@debian.org>
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811619
+
+--- a/src/translator_manager.cpp
++++ b/src/translator_manager.cpp
+@@ -176,11 +176,11 @@ Translator *TranslatorManager::getTestDi
+ isDataOk = isDataOk && tr->init(tr->BG_EN, string(string(prop->getDirectory()) + prop->getString("data")).c_str());
+ } else {
+ cerr << "TranslatorManager::getTestDictionaryObject - Wrong description file: " << testDictionaries[index].fileName << "\n";
+- return false;
++ return NULL;
+ }
+ if (!isDataOk) {
+ cerr << "TranslatorManager::getTestDictionaryObject - Problem initialazing dictionary: " << testDictionaries[index].fileName << "\n";
+- return false;
++ return NULL;
+ }
+ char c[16];
+ sprintf(c, "%d", level);