summaryrefslogtreecommitdiffstats
path: root/kontact_plugin/basketdcopiface_stub.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:01:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:01:17 -0600
commit2a411f53a04f815770074b633e026a141f6fa875 (patch)
tree0408d7c0976f54b4b6d13e8fbf5d91a82cb4ff92 /kontact_plugin/basketdcopiface_stub.cpp
parentae6cafee5339716bd01aa6c66aa4f366bdc5d43b (diff)
downloadbasket-2a411f53a04f815770074b633e026a141f6fa875.tar.gz
basket-2a411f53a04f815770074b633e026a141f6fa875.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'kontact_plugin/basketdcopiface_stub.cpp')
-rw-r--r--kontact_plugin/basketdcopiface_stub.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kontact_plugin/basketdcopiface_stub.cpp b/kontact_plugin/basketdcopiface_stub.cpp
index a170b62..ca0de8b 100644
--- a/kontact_plugin/basketdcopiface_stub.cpp
+++ b/kontact_plugin/basketdcopiface_stub.cpp
@@ -30,24 +30,24 @@ BasketDcopInterface_stub::BasketDcopInterface_stub( const DCOPRef& ref )
void BasketDcopInterface_stub::newBasket()
{
if ( !dcopClient() ) {
- settqStatus( CallFailed );
+ setStatus( CallFailed );
return;
}
TQByteArray data;
dcopClient()->send( app(), obj(), "newBasket()", data );
- settqStatus( CallSucceeded );
+ setStatus( CallSucceeded );
}
void BasketDcopInterface_stub::handleCommandLine()
{
if ( !dcopClient() ) {
- settqStatus( CallFailed );
+ setStatus( CallFailed );
return;
}
TQByteArray data, replyData;
TQCString replyType;
if ( dcopClient()->call( app(), obj(), "handleCommandLine()", data, replyType, replyData ) ) {
- settqStatus( CallSucceeded );
+ setStatus( CallSucceeded );
} else {
callFailed();
}