summaryrefslogtreecommitdiff
path: root/core
authorllornkcor <llornkcor>2002-03-19 13:06:04 (UTC)
committer llornkcor <llornkcor>2002-03-19 13:06:04 (UTC)
commit4813077950f77a616ce5cd79276aa18db3dc23d4 (patch) (unidiff)
tree27d21d8c0af3424e7afe704511077964a1290d8e /core
parentf298cb9f5557d88b9ff38feb4b5e090e5c164ec2 (diff)
downloadopie-4813077950f77a616ce5cd79276aa18db3dc23d4.zip
opie-4813077950f77a616ce5cd79276aa18db3dc23d4.tar.gz
opie-4813077950f77a616ce5cd79276aa18db3dc23d4.tar.bz2
fixed spelling error on qDebug message
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/qcopbridge.cpp2
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
@@ -135,13 +135,13 @@ void QCopBridge::desktopMessage( const QCString &command, const QByteArray &args
135 str = QString::number( i ); 135 str = QString::number( i );
136 } else if ( *it == "bool" ) { 136 } else if ( *it == "bool" ) {
137 int i; 137 int i;
138 stream >> i; 138 stream >> i;
139 str = QString::number( i ); 139 str = QString::number( i );
140 } else { 140 } else {
141 qDebug(" cannot route the argument type %s throught the qcop bridge", (*it).latin1() ); 141 qDebug(" cannot route the argument type %s through the qcop bridge", (*it).latin1() );
142 return; 142 return;
143 } 143 }
144 str.replace( QRegExp("&"), "&amp;" ); 144 str.replace( QRegExp("&"), "&amp;" );
145 str.replace( QRegExp(" "), "&0x20;" ); 145 str.replace( QRegExp(" "), "&0x20;" );
146 str.replace( QRegExp("\n"), "&0x0d;" ); 146 str.replace( QRegExp("\n"), "&0x0d;" );
147 str.replace( QRegExp("\r"), "&0x0a;" ); 147 str.replace( QRegExp("\r"), "&0x0a;" );