-rw-r--r-- | core/launcher/qcopbridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/qcopbridge.cpp b/core/launcher/qcopbridge.cpp index c78e827..c8af919 100644 --- a/core/launcher/qcopbridge.cpp +++ b/core/launcher/qcopbridge.cpp @@ -129,25 +129,25 @@ void QCopBridge::desktopMessage( const QCString &command, const QByteArray &args QCString cstr; stream >> cstr; str = QString::fromLocal8Bit( cstr ); } else if ( *it == "int" ) { int i; stream >> i; str = QString::number( i ); } else if ( *it == "bool" ) { int i; stream >> i; str = QString::number( i ); } else { - qDebug(" cannot route the argument type %s throught the qcop bridge", (*it).latin1() ); + qDebug(" cannot route the argument type %s through the qcop bridge", (*it).latin1() ); return; } str.replace( QRegExp("&"), "&" ); str.replace( QRegExp(" "), "&0x20;" ); str.replace( QRegExp("\n"), "&0x0d;" ); str.replace( QRegExp("\r"), "&0x0a;" ); data += " " + str; } } QString sendCommand = QString(command.data()) + data; // send the command to all open connections if ( command == "startSync()" ) { |