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/xpart.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/xpart.h')
-rw-r--r-- | xparts/src/interfaces/xpart.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xparts/src/interfaces/xpart.h b/xparts/src/interfaces/xpart.h index 7722f5fb..1d323a5d 100644 --- a/xparts/src/interfaces/xpart.h +++ b/xparts/src/interfaces/xpart.h @@ -3,7 +3,7 @@ #include <dcopobject.h> #include <dcopref.h> -#include <qglobal.h> +#include <tqglobal.h> class XPart : public DCOPObject { @@ -17,7 +17,7 @@ k_dcop: virtual void show() = 0; /** sent by the XPartHost to request url opening */ - virtual bool openURL( const QCString& url ) = 0; + virtual bool openURL( const TQCString& url ) = 0; /** sent by the XPartHost to close the url */ virtual bool closeURL() = 0; @@ -26,10 +26,10 @@ k_dcop: * XPartHost::createActions()) has been activated. Name is the name of the * action, state is used with Toggle actions to precise the current state. */ - virtual ASYNC activateAction( const QString &name, int state ) = 0; + virtual ASYNC activateAction( const TQString &name, int state ) = 0; /** Are extentions available -> browser extension / TextEditor ? */ - virtual DCOPRef queryExtension( const QCString& extension ) = 0; + virtual DCOPRef queryExtension( const TQCString& extension ) = 0; }; |