summaryrefslogtreecommitdiffstats
path: root/kdeui/kdcopactionproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/kdcopactionproxy.h')
-rw-r--r--kdeui/kdcopactionproxy.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdeui/kdcopactionproxy.h b/kdeui/kdcopactionproxy.h
index 48a7ea9a0..5b0ffdc1c 100644
--- a/kdeui/kdcopactionproxy.h
+++ b/kdeui/kdcopactionproxy.h
@@ -60,7 +60,7 @@ public:
* Returns a list of exportable actions. The default implementation returns a list of actions
* provided by a KActionCollection, if the first constructor has been used.
*/
- virtual QValueList<KAction *> actions() const;
+ virtual TQValueList<KAction *> actions() const;
/**
* Returns an action object with the given name. The default implementation queries the action object
* from the KActionCollection, if the first constructor has been used.
@@ -77,7 +77,7 @@ public:
*
* The action with the given name has to be available through the #action method.
*/
- virtual QCString actionObjectId( const QCString &name ) const;
+ virtual TQCString actionObjectId( const TQCString &name ) const;
/**
* Returns a map of all exported actions, with the action name as keys and a global DCOP reference
@@ -85,20 +85,20 @@ public:
* The appId argument is used to specify the appid component of the DCOP reference. By default the
* global application id is used ( kapp->dcopClient()->appId() ) .
*/
- virtual QMap<QCString,DCOPRef> actionMap( const QCString &appId = QCString() ) const;
+ virtual TQMap<TQCString,DCOPRef> actionMap( const TQCString &appId = TQCString() ) const;
/**
* Internal reimplementation of DCOPObjectProxy::process .
*/
- virtual bool process( const QCString &obj, const QCString &fun, const QByteArray &data,
- QCString &replyType, QByteArray &replyData );
+ virtual bool process( const TQCString &obj, const TQCString &fun, const TQByteArray &data,
+ TQCString &replyType, TQByteArray &replyData );
/**
* Called by the #process method and takes care of processing the object request for an
* action object.
*/
- virtual bool processAction( const QCString &obj, const QCString &fun, const QByteArray &data,
- QCString &replyType, QByteArray &replyData, KAction *action );
+ virtual bool processAction( const TQCString &obj, const TQCString &fun, const TQByteArray &data,
+ TQCString &replyType, TQByteArray &replyData, KAction *action );
private:
void init( KActionCollection *collection, DCOPObject *parent );