diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-16 11:34:26 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-16 11:34:26 -0600 |
commit | 246aeb85edaed7bdb44a675c9524719a0341a7be (patch) | |
tree | 5dbc3e222064f6630788109718cefddff63e0b40 /kopete/protocols/yahoo | |
parent | 8c12b4e76da50193458243b276daf7a888e248c8 (diff) | |
download | tdenetwork-246aeb85edaed7bdb44a675c9524719a0341a7be.tar.gz tdenetwork-246aeb85edaed7bdb44a675c9524719a0341a7be.zip |
Fix unintended renaming
Diffstat (limited to 'kopete/protocols/yahoo')
-rw-r--r-- | kopete/protocols/yahoo/libkyahoo/webcamtask.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kopete/protocols/yahoo/libkyahoo/webcamtask.cpp b/kopete/protocols/yahoo/libkyahoo/webcamtask.cpp index 5856fa10..abfab0dc 100644 --- a/kopete/protocols/yahoo/libkyahoo/webcamtask.cpp +++ b/kopete/protocols/yahoo/libkyahoo/webcamtask.cpp @@ -168,8 +168,8 @@ void WebcamTask::slotConnectionStage2Established() if( socketMap[socket].direction == Incoming ) { - // Send <RETQIMG>-Packet - socket->writeBlock( TQCString("<RETQIMG>").data(), 8 ); + // Send <REQIMG>-Packet + socket->writeBlock( TQCString("<REQIMG>").data(), 8 ); // Send request information s = TQString("a=2\r\nc=us\r\ne=21\r\nu=%1\r\nt=%2\r\ni=\r\ng=%3\r\no=w-2-5-1\r\np=1") .arg(client()->userId()).arg(socketMap[socket].key).arg(socketMap[socket].sender); @@ -178,7 +178,7 @@ void WebcamTask::slotConnectionStage2Established() } else { - // Send <RETQIMG>-Packet + // Send <REQIMG>-Packet socket->writeBlock( TQCString("<SNDIMG>").data(), 8 ); // Send request information s = TQString("a=2\r\nc=us\r\nu=%1\r\nt=%2\r\ni=%3\r\no=w-2-5-1\r\np=2\r\nb=KopeteWebcam\r\nd=\r\n") |