Index: head/net-im/kopete-kde4/files/patch-kopete_kconf__update_kopete-nameTracking.cpp =================================================================== --- head/net-im/kopete-kde4/files/patch-kopete_kconf__update_kopete-nameTracking.cpp (nonexistent) +++ head/net-im/kopete-kde4/files/patch-kopete_kconf__update_kopete-nameTracking.cpp (revision 479185) @@ -0,0 +1,11 @@ +--- kopete/kconf_update/kopete-nameTracking.cpp.orig 2018-09-07 10:14:33 UTC ++++ kopete/kconf_update/kopete-nameTracking.cpp +@@ -59,7 +59,7 @@ int main() + // check if it's a contact by checking for "protocol" substring in the tag, + // and the presence of a contactId child element. + QString pluginId = elem.attribute( QLatin1String( "plugin-id" ) ); +- bool isProtocol = ( pluginId.contains( "protocol", false ) > 0 ); // case-insensitive search ++ bool isProtocol = bool( pluginId.contains( "protocol", false ) ); // case-insensitive search + bool hasContactId = false; + QDomNode field = elem.firstChild(); + while( !field.isNull() ) Property changes on: head/net-im/kopete-kde4/files/patch-kopete_kconf__update_kopete-nameTracking.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_kircengine__ctcp.cpp =================================================================== --- head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_kircengine__ctcp.cpp (nonexistent) +++ head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_kircengine__ctcp.cpp (revision 479185) @@ -0,0 +1,11 @@ +--- protocols/irc/libkirc/kircengine_ctcp.cpp.orig 2018-09-07 10:14:46 UTC ++++ protocols/irc/libkirc/kircengine_ctcp.cpp +@@ -153,7 +153,7 @@ void Engine::CtcpRequest_dcc(const QStri + { + QFileInfo file(fileName); + QString noWhiteSpace = file.fileName(); +- if (noWhiteSpace.contains(' ') > 0) ++ if (noWhiteSpace.contains(' ') ) + noWhiteSpace.replace(QRegExp("\\s+"), "_"); + + TransferServer *server = TransferHandler::self()->createServer(this, nickname, type, fileName, file.size()); Property changes on: head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_kircengine__ctcp.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_plugins_ctcp_kircctcpmessages.cpp =================================================================== --- head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_plugins_ctcp_kircctcpmessages.cpp (nonexistent) +++ head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_plugins_ctcp_kircctcpmessages.cpp (revision 479185) @@ -0,0 +1,11 @@ +--- protocols/irc/libkirc/plugins/ctcp/kircctcpmessages.cpp.orig 2018-09-07 10:14:53 UTC ++++ protocols/irc/libkirc/plugins/ctcp/kircctcpmessages.cpp +@@ -101,7 +101,7 @@ void StdCommands::CtcpRequest_dcc(const + { + QFileInfo file(fileName); + QString noWhiteSpace = file.fileName(); +- if (noWhiteSpace.contains(' ') > 0) ++ if (noWhiteSpace.contains(' ') ) + noWhiteSpace.replace(QRegExp("\\s+"), "_"); + + TransferServer *server = TransferHandler::self()->createServer(this, nickname, type, fileName, file.size()); Property changes on: head/net-im/kopete-kde4/files/patch-protocols_irc_libkirc_plugins_ctcp_kircctcpmessages.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-im/kopete-kde4/files/patch-protocols_jabber_libiris_src_xmpp_xmpp-im_filetransfer.cpp =================================================================== --- head/net-im/kopete-kde4/files/patch-protocols_jabber_libiris_src_xmpp_xmpp-im_filetransfer.cpp (nonexistent) +++ head/net-im/kopete-kde4/files/patch-protocols_jabber_libiris_src_xmpp_xmpp-im_filetransfer.cpp (revision 479185) @@ -0,0 +1,11 @@ +--- protocols/jabber/libiris/src/xmpp/xmpp-im/filetransfer.cpp.orig 2018-09-07 10:16:18 UTC ++++ protocols/jabber/libiris/src/xmpp/xmpp-im/filetransfer.cpp +@@ -430,7 +430,7 @@ FileTransfer *FileTransferManager::takeI + + bool FileTransferManager::isActive(const FileTransfer *ft) const + { +- return d->list.contains(const_cast(ft)) > 0; ++ return d->list.contains(const_cast(ft)); + } + + void FileTransferManager::setDisabled(const QString &ns, bool state) Property changes on: head/net-im/kopete-kde4/files/patch-protocols_jabber_libiris_src_xmpp_xmpp-im_filetransfer.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property