summaryrefslogtreecommitdiffstats
path: root/kresources/groupwise/soap
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-16 05:35:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-16 05:35:56 +0000
commit482da59e5442d1aaa1fb34bb3ea0c7328d183e22 (patch)
treee7437563bbcdf09100e620f68838bec3ccfd7018 /kresources/groupwise/soap
parent997243b79bc5f00e455b19b8282d75ec6a10b19b (diff)
downloadtdepim-482da59e5442d1aaa1fb34bb3ea0c7328d183e22.tar.gz
tdepim-482da59e5442d1aaa1fb34bb3ea0c7328d183e22.zip
Use const_cast (not static_cast) to fix the previous kdepim FTBFS...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1247467 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/groupwise/soap')
-rw-r--r--kresources/groupwise/soap/stdsoap2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kresources/groupwise/soap/stdsoap2.cpp b/kresources/groupwise/soap/stdsoap2.cpp
index 3f167eec..959ada87 100644
--- a/kresources/groupwise/soap/stdsoap2.cpp
+++ b/kresources/groupwise/soap/stdsoap2.cpp
@@ -8718,7 +8718,7 @@ soap_TQName2s(struct soap *soap, const char *s)
}
}
}
- t = static_cast<char*>(strchr(s, '"'));
+ t = const_cast<char*>(strchr(s, '"'));
if (t)
n = t - s;
else