diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-09-30 01:03:15 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-09-30 01:03:15 +0200 |
commit | ec3cc39fa3fa91d88828a022501dd3dfbb6c0dea (patch) | |
tree | f218859670abf908b1586e9a165371ad9a52b148 /kde3/kdenetwork3/kdenetwork-3.5.10-gcc44-1.patch | |
parent | 48f54a9d6f139ff85471abc1ba113d946b0dda9f (diff) | |
download | nutyx-extra-ec3cc39fa3fa91d88828a022501dd3dfbb6c0dea.tar.gz nutyx-extra-ec3cc39fa3fa91d88828a022501dd3dfbb6c0dea.tar.bz2 nutyx-extra-ec3cc39fa3fa91d88828a022501dd3dfbb6c0dea.tar.xz nutyx-extra-ec3cc39fa3fa91d88828a022501dd3dfbb6c0dea.zip |
ajout de kdenetwork3#3.5.10-1
Diffstat (limited to 'kde3/kdenetwork3/kdenetwork-3.5.10-gcc44-1.patch')
-rw-r--r-- | kde3/kdenetwork3/kdenetwork-3.5.10-gcc44-1.patch | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/kde3/kdenetwork3/kdenetwork-3.5.10-gcc44-1.patch b/kde3/kdenetwork3/kdenetwork-3.5.10-gcc44-1.patch new file mode 100644 index 000000000..33a4c6adb --- /dev/null +++ b/kde3/kdenetwork3/kdenetwork-3.5.10-gcc44-1.patch @@ -0,0 +1,55 @@ +diff -Naur kdenetwork-3.5.10.orig/kopete/protocols/groupwise/libgroupwise/rtf.cc kdenetwork-3.5.10/kopete/protocols/groupwise/libgroupwise/rtf.cc +--- kdenetwork-3.5.10.orig/kopete/protocols/groupwise/libgroupwise/rtf.cc 2005-09-10 +10:20:20.000000000 +0200 ++++ kdenetwork-3.5.10/kopete/protocols/groupwise/libgroupwise/rtf.cc 2009-11-24 +07:58:04.000000000 +0100 +@@ -2235,7 +2235,7 @@ + + FontDef& def = p->fonts[m_nFont-1]; + +- char *pp = strchr(str, ';'); ++ const char *pp = strchr(str, ';'); + unsigned size; + if (pp != NULL) + size = (pp - str); +diff -Naur kdenetwork-3.5.10.orig/kopete/protocols/groupwise/libgroupwise/rtf.ll kdenetwork-3.5.10/kopete/protocols/groupwise/libgroupwise/rtf.ll +--- kdenetwork-3.5.10.orig/kopete/protocols/groupwise/libgroupwise/rtf.ll 2005-09-10 +10:20:20.000000000 +0200 ++++ kdenetwork-3.5.10/kopete/protocols/groupwise/libgroupwise/rtf.ll 2009-11-24 +07:53:01.000000000 +0100 +@@ -570,7 +570,7 @@ + + FontDef& def = p->fonts[m_nFont-1]; + +- char *pp = strchr(str, ';'); ++ const char *pp = strchr(str, ';'); + unsigned size; + if (pp != NULL) + size = (pp - str); +diff -Naur kdenetwork-3.5.10.orig/kopete/protocols/oscar/liboscar/rtf.cc kdenetwork-3.5.10/kopete/protocols/oscar/liboscar/rtf.cc +--- kdenetwork-3.5.10.orig/kopete/protocols/oscar/liboscar/rtf.cc 2005-09-10 +10:20:23.000000000 +0200 ++++ kdenetwork-3.5.10/kopete/protocols/oscar/liboscar/rtf.cc 2009-11-24 08:05:57.000000000 +0100 +@@ -2131,7 +2131,7 @@ + + FontDef& def = p->fonts[m_nFont-1]; + +- char *pp = strchr(str, ';'); ++ const char *pp = strchr(str, ';'); + unsigned size; + if (pp != NULL) + size = (pp - str); +diff -Naur kdenetwork-3.5.10.orig/kopete/protocols/oscar/liboscar/rtf.ll kdenetwork-3.5.10/kopete/protocols/oscar/liboscar/rtf.ll +--- kdenetwork-3.5.10.orig/kopete/protocols/oscar/liboscar/rtf.ll 2005-09-10 +10:20:23.000000000 +0200 ++++ kdenetwork-3.5.10/kopete/protocols/oscar/liboscar/rtf.ll 2009-11-24 08:05:33.000000000 +0100 +@@ -568,7 +568,7 @@ + + FontDef& def = p->fonts[m_nFont-1]; + +- char *pp = strchr(str, ';'); ++ const char *pp = strchr(str, ';'); + unsigned size; + if (pp != NULL) + size = (pp - str); + |