diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /xparts/src/interfaces/xparthost.h | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
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 75c6f4e0..3cbede0f 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(TQCString name) : DCOPObject(name) {} + XPartHost(TTQCString 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 TQCString &xmlActions ) = 0; + virtual ASYNC createActions( const TTQCString &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 TQString &caption ) = 0; + virtual ASYNC setWindowCaption( const TTQString &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 TQString &text ) = 0; + virtual ASYNC setStatusBarText( const TTQString &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 TQString &errMsg ) = 0; + virtual ASYNC canceled( const TTQString &errMsg ) = 0; }; |