diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
commit | 479f5f799523bffbcc83dff581a2299c047c6fff (patch) | |
tree | 186aae707ed02aac6c7cab2fb14e97f72aca5e36 /xparts/src/interfaces/xparthost.h | |
parent | f1dbff6145c98324ff82e34448b7483727e8ace4 (diff) | |
download | tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'xparts/src/interfaces/xparthost.h')
-rw-r--r-- | xparts/src/interfaces/xparthost.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xparts/src/interfaces/xparthost.h b/xparts/src/interfaces/xparthost.h index 3d1d95f4..75c6f4e0 100644 --- a/xparts/src/interfaces/xparthost.h +++ b/xparts/src/interfaces/xparthost.h @@ -8,7 +8,7 @@ class XPartHost : public DCOPObject { K_DCOP public: - XPartHost(QCString name) : DCOPObject(name) {} + XPartHost(TQCString name) : DCOPObject(name) {} k_dcop: @@ -20,17 +20,17 @@ k_dcop: /** The XPart informs its host about its available actions. * the actions are sent to the XPart using XPart::activateAction */ - virtual ASYNC createActions( const QCString &xmlActions ) = 0; + virtual ASYNC createActions( const TQCString &xmlActions ) = 0; /** DCOP signal emitted by the XPart and received here, to be * forwarded to the KPartHost. See KParts documentation for * more details. */ - virtual ASYNC setWindowCaption( const QString &caption ) = 0; + virtual ASYNC setWindowCaption( const TQString &caption ) = 0; /** DCOP signal emitted by the XPart and received here, to be * forwarded to the KPartHost. See KParts documentation for * more details. */ - virtual ASYNC setStatusBarText( const QString &text ) = 0; + virtual ASYNC setStatusBarText( const TQString &text ) = 0; /** DCOP signal emitted by the XPart and received here, to be @@ -46,7 +46,7 @@ k_dcop: /** DCOP signal emitted by the XPart and received here, to be * forwarded to the KPartHost. See KParts documentation for * more details. */ - virtual ASYNC canceled( const QString &errMsg ) = 0; + virtual ASYNC canceled( const TQString &errMsg ) = 0; }; |