diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 17:31:48 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-20 17:31:48 +0900 |
commit | 1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694 (patch) | |
tree | e6967aa8aacf5e5fca64c6b69f3a0ddc528a5640 /kopete/protocols/oscar/liboscar | |
parent | 50da92376284f30d95e18960d2b24c49901fb10d (diff) | |
download | tdenetwork-1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694.tar.gz tdenetwork-1517a05d2ffe7a33e1fe18a2dae540ae1c3d6694.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kopete/protocols/oscar/liboscar')
-rw-r--r-- | kopete/protocols/oscar/liboscar/chatservicetask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/protocols/oscar/liboscar/chatservicetask.cpp b/kopete/protocols/oscar/liboscar/chatservicetask.cpp index 3fb180d2..0eb9fb6c 100644 --- a/kopete/protocols/oscar/liboscar/chatservicetask.cpp +++ b/kopete/protocols/oscar/liboscar/chatservicetask.cpp @@ -63,7 +63,7 @@ void ChatServiceTask::onGo() kdDebug(OSCAR_RAW_DEBUG) << k_funcinfo << "sending '" << m_message.textArray() << "' to the " << m_room << " room" << endl; Buffer* b = new Buffer(); - b->addDWord( TDEApplication::random() ); //use kapp since it's convenient + b->addDWord( TDEApplication::random() ); //use tdeApp since it's convenient b->addDWord( TDEApplication::random() ); b->addWord( 0x0003 ); //this be message channel 3 mateys! arrr!! b->addDWord( 0x00010000 ); //TLV 1 - this means it's a public message |