summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetetask.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/libkopete/kopetetask.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopetetask.h')
-rw-r--r--kopete/libkopete/kopetetask.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/libkopete/kopetetask.h b/kopete/libkopete/kopetetask.h
index 115e1ebe..5457e1ba 100644
--- a/kopete/libkopete/kopetetask.h
+++ b/kopete/libkopete/kopetetask.h
@@ -17,7 +17,7 @@
#ifndef KOPETETASK_H
#define KOPETETASK_H
-#include <qobject.h>
+#include <tqobject.h>
#include <kdemacros.h>
namespace Kopete
@@ -29,8 +29,8 @@ namespace Kopete
*
* \code
* Kopete::Task *task = someobject->someoperation( some parameters );
- * connect( task, SIGNAL( result( Kopete::Task * ) ),
- * this, SLOT( slotResult( Kopete::Task * ) ) );
+ * connect( task, TQT_SIGNAL( result( Kopete::Task * ) ),
+ * this, TQT_SLOT( slotResult( Kopete::Task * ) ) );
* \endcode
* (other connects, specific to the job)
*
@@ -73,7 +73,7 @@ public:
* telling the user that the app is broken, so check with
* succeeded() whether there is an error.
*/
- const QString &errorString() const;
+ const TQString &errorString() const;
/** Flags for the abort() function */
enum AbortFlags { AbortNormal = 0, AbortEmitResult = 1 };
@@ -103,7 +103,7 @@ signals:
* @param task the task that emitted this signal
* @param message the info message
*/
- void statusMessage( Kopete::Task *task, const QString &message );
+ void statusMessage( Kopete::Task *task, const TQString &message );
protected:
/**
@@ -135,7 +135,7 @@ protected:
* Sets the stored result and error message to @p result and @p errorMessage.
* You should call this instead of emitting the result() signal yourself.
*/
- void emitResult( Result result = ResultSucceeded, const QString &errorMessage = QString::null );
+ void emitResult( Result result = ResultSucceeded, const TQString &errorMessage = TQString::null );
protected slots:
/**