author | sudonix <sudonix> | 2004-02-14 20:48:48 (UTC) |
---|---|---|
committer | sudonix <sudonix> | 2004-02-14 20:48:48 (UTC) |
commit | b922593f1261a972752c825ba4f6c158aa7cc720 (patch) (side-by-side diff) | |
tree | 90ab16a6472d2f3e118d95def2f5decd46595578 | |
parent | 9a9c6a2c813347a2a1f83333314b2fd07f34828a (diff) | |
download | opie-b922593f1261a972752c825ba4f6c158aa7cc720.zip opie-b922593f1261a972752c825ba4f6c158aa7cc720.tar.gz opie-b922593f1261a972752c825ba4f6c158aa7cc720.tar.bz2 |
A small typo corrected(found while translating)
-rw-r--r-- | noncore/comm/keypebble/krfbdecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/comm/keypebble/krfbdecoder.cpp b/noncore/comm/keypebble/krfbdecoder.cpp index dc90d9c..c43aed5 100644 --- a/noncore/comm/keypebble/krfbdecoder.cpp +++ b/noncore/comm/keypebble/krfbdecoder.cpp @@ -130,33 +130,33 @@ KRFBDecoder::~KRFBDecoder() if ( format ) delete format; } void KRFBDecoder::start() { sendClientInit(); } void KRFBDecoder::sendClientInit() { con->write( &( con->options()->shared ), 1 ); // Wait for server init qWarning( "Waiting for server init" ); - static QString statusMsg = tr( "Waiting for server initialisation..." ); + static QString statusMsg = tr( "Waiting for server initialization..." ); emit status( statusMsg ); currentState = AwaitingServerInit; connect( con, SIGNAL( gotEnoughData() ), SLOT( gotServerInit() ) ); con->waitForData( ServerInitLength ); } void KRFBDecoder::gotServerInit() { qWarning( "Got server init" ); disconnect( con, SIGNAL( gotEnoughData() ), this, SLOT( gotServerInit() ) ); if ( info ) delete info; info = new KRFBServerInfo; CHECK_PTR( info ); |