diff options
author | Petar Petrov <ppetrov@paju.oulu.fi> | 2012-09-20 23:27:28 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-22 11:40:54 -0500 |
commit | a7fdde462fe19ec70827e11fdb3b5c7355ef5a6d (patch) | |
tree | 1702549a30a453a697653dd638fcebaf16f12e0e /office/gbgoffice/08_fix_const_conversion.patch | |
parent | 0edc3b2d37022856a3ca149ba1b8e01cd35a4308 (diff) | |
download | slackbuilds-a7fdde462fe19ec70827e11fdb3b5c7355ef5a6d.tar.gz |
office/gbgoffice: Removed some duplicate patches
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/gbgoffice/08_fix_const_conversion.patch')
-rw-r--r-- | office/gbgoffice/08_fix_const_conversion.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/office/gbgoffice/08_fix_const_conversion.patch b/office/gbgoffice/08_fix_const_conversion.patch deleted file mode 100644 index 0aa6c54fcf..0000000000 --- a/office/gbgoffice/08_fix_const_conversion.patch +++ /dev/null @@ -1,17 +0,0 @@ -# Description: Since a constant is passed into strchr(), pu must also be const -# to keep the compiler from generating an error. -# Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gbgoffice/+bug/445624 -# Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550115 -# ---- a/src/translator.cpp -+++ b/src/translator.cpp -@@ -315,7 +315,8 @@ bool Translator::findWord(const char *wo - - char *Translator::transformResult(const char *result) { - int j, i, m, n, u; -- char *b, *pu; -+ const char *pu; -+ char *b; - char c; - strcpy(dataBuffer2, result); - if ((advancedSearchState) && (advancedSearchHighlight)) { |