diff options
author | Slávek Banko <[email protected]> | 2012-06-20 20:47:29 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-20 20:47:29 +0200 |
commit | 16a78de1f2c976a97da2c041043e66e13fa722ae (patch) | |
tree | 8c74c69939a17d3a9e9955f344187d2b911013e8 /knewsticker | |
parent | ef4a78ff54990278f8712404a5934b32f3fd5a9b (diff) | |
download | tdenetwork-16a78de1f2c976a97da2c041043e66e13fa722ae.tar.gz tdenetwork-16a78de1f2c976a97da2c041043e66e13fa722ae.zip |
Fix checking DCOP replyType
This partially resolves Bug 994
An alternative way to compile with the original tqtinterface v3.5.13
Diffstat (limited to 'knewsticker')
-rw-r--r-- | knewsticker/common/newsiconmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/knewsticker/common/newsiconmgr.cpp b/knewsticker/common/newsiconmgr.cpp index 6e8e88d7..3d7b345a 100644 --- a/knewsticker/common/newsiconmgr.cpp +++ b/knewsticker/common/newsiconmgr.cpp @@ -146,7 +146,7 @@ TQString NewsIconMgr::favicon(const KURL &url) const kapp->dcopClient()->call("kded", "favicons", "iconForURL(KURL)", data, replyType, reply); - if (replyType == TQSTRING_OBJECT_NAME_STRING) { + if (replyType == "QString" || replyType == "TQString") { TQDataStream replyStream(reply, IO_ReadOnly); TQString result; replyStream >> result; |