From 65cf1e63bbfb4fe8bede01b16201b624ce78aa88 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 4 Jan 2010 04:24:50 +0000 Subject: [PATCH] gcc4.4 compilation fixes git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1069683 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcontrol/kfontinst/kfontinst/Fontmap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcontrol/kfontinst/kfontinst/Fontmap.cpp b/kcontrol/kfontinst/kfontinst/Fontmap.cpp index 87cfabad8..6e0c165e9 100644 --- a/kcontrol/kfontinst/kfontinst/Fontmap.cpp +++ b/kcontrol/kfontinst/kfontinst/Fontmap.cpp @@ -66,11 +66,11 @@ static bool parseLine(const char *line, QString &ps, QString &fname, bool &isAli b[constFileMaxLen+1]; char *slash1=(char*)strchr(line, '/'), - *space1=slash1 ? findSpace(slash1) : NULL, //strchr(slash1, ' ') : NULL, + *space1=slash1 ? (char*)findSpace(slash1) : NULL, //strchr(slash1, ' ') : NULL, *ob=slash1 ? (char*)strchr(slash1, '(') : NULL, *cb=ob ? (char*)strchr(ob, ')') : NULL, *slash2=space1 && !ob && !cb ? (char*)strchr(space1, '/') : NULL, - *space2=slash2 ? findSpace(slash2) : NULL, // strchr(slash2, ' ') : NULL, + *space2=slash2 ? (char*)findSpace(slash2) : NULL, // strchr(slash2, ' ') : NULL, *semic=cb || space2 ? (char*)strchr(cb ? cb : space2, ';') : NULL; if(semic && space1-slash1