]> git.pld-linux.org Git - packages/fltk.git/commitdiff
- obsolete
authorJan Rękorajski <baggins@pld-linux.org>
Thu, 28 Jan 2010 12:39:26 +0000 (12:39 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fltk-1.1.9-consts.patch -> 1.2

fltk-1.1.9-consts.patch [deleted file]

diff --git a/fltk-1.1.9-consts.patch b/fltk-1.1.9-consts.patch
deleted file mode 100644 (file)
index 1ca0d84..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -ru fltk-1.1.9.orig/src/fl_set_fonts_xft.cxx fltk-1.1.9/src/fl_set_fonts_xft.cxx
---- fltk-1.1.9.orig/src/fl_set_fonts_xft.cxx   2009-03-04 10:58:49.000000000 +0000
-+++ fltk-1.1.9/src/fl_set_fonts_xft.cxx        2009-03-04 11:01:25.000000000 +0000
-@@ -253,13 +253,13 @@
-       // So the bit we want is up to the first comma - BUT some strings have
-       // more than one name, separated by, guess what?, a comma...
-       stop = start = first = 0;
--      stop = strchr((const char *)font, ',');
--      start = strchr((const char *)font, ':');
-+      stop = strchr((char *)font, ',');
-+      start = strchr((char *)font, ':');
-       if ((stop) && (start) && (stop < start))
-       {
-         first = stop + 1; // discard first version of name
-         // find first comma *after* the end of the name
--        stop = strchr((const char *)start, ',');
-+        stop = strchr((char *)start, ',');
-       }
-       else
-       {
This page took 0.075212 seconds and 4 git commands to generate.