summaryrefslogtreecommitdiffstats
path: root/redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2019-11-03 10:14:46 +0100
committerFrançois Andriot <albator78@libertysurf.fr>2019-11-03 11:16:29 +0100
commitc3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0 (patch)
tree05b16c4c316aad9b0572275b8c32868b2aef7965 /redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch
parentc9bb196e3bc20aef636c7478727f24aa7656b3cf (diff)
downloadtde-packaging-c3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0.tar.gz
tde-packaging-c3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0.zip
RPM: remove lots of obsolete 3.5.13.x files
Diffstat (limited to 'redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch')
-rw-r--r--redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch b/redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch
deleted file mode 100644
index 4b9f93e75..000000000
--- a/redhat/applications/gwenview/gwenview-3.5.13-fix_alphabet_string_error.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 9cb99cdb5337032764d897c94a5e7c8803784d4e
-Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
-Date: 1327529624 -0600
-
- Fix linear alphabet string errors
-
-diff --git a/src/gvcore/xpm.cpp b/src/gvcore/xpm.cpp
-index a021c55..f9018b8 100644
---- a/src/gvcore/xpm.cpp
-+++ b/src/gvcore/xpm.cpp
-@@ -308,7 +308,7 @@ static const char* xpm_color_name( int cpp, int index )
- {
- static char returnable[5];
- static const char code[] = ".#abcdefghijklmnopqrstuvwxyzABCD"
-- "EFGHIJKLMNOPTQRSTUVWXYZ0123456789";
-+ "EFGHIJKLMNOPQRSTUVWXYZ0123456789";
- // cpp is limited to 4 and index is limited to 64^cpp
- if ( cpp > 1 ) {
- if ( cpp > 2 ) {