diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/kdcopactionproxy.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kdcopactionproxy.h')
-rw-r--r-- | kdeui/kdcopactionproxy.h | 14 |
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 ); |