diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /konqueror/KonqViewIface.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konqueror/KonqViewIface.h')
-rw-r--r-- | konqueror/KonqViewIface.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/konqueror/KonqViewIface.h b/konqueror/KonqViewIface.h index 43630f7f5..aa79de719 100644 --- a/konqueror/KonqViewIface.h +++ b/konqueror/KonqViewIface.h @@ -22,7 +22,7 @@ #define __KonqViewIface_h__ #include <dcopobject.h> -#include <qstringlist.h> +#include <tqstringlist.h> #include <dcopref.h> class KonqView; @@ -35,7 +35,7 @@ class KonqViewIface : virtual public DCOPObject K_DCOP public: - KonqViewIface( KonqView * view, const QCString& name ); + KonqViewIface( KonqView * view, const TQCString& name ); ~KonqViewIface(); k_dcop: @@ -44,9 +44,9 @@ k_dcop: * Displays another URL, but without changing the view mode * (Make sure the part can display this URL) */ - void openURL( QString url, - const QString & locationBarURL, - const QString & nameFilter ); + void openURL( TQString url, + const TQString & locationBarURL, + const TQString & nameFilter ); /** Reload */ void reload(); @@ -57,8 +57,8 @@ k_dcop: * @param serviceName allows to enforce a particular service to be chosen, * @see KonqFactory. */ - bool changeViewMode( const QString &serviceType, - const QString &serviceName ); + bool changeViewMode( const TQString &serviceType, + const TQString &serviceName ); /** * Call this to prevent next openURL() call from changing history lists @@ -74,23 +74,23 @@ k_dcop: /** * Retrieve view's URL */ - QString url(); + TQString url(); /** * Get view's location bar URL, i.e. the one that the view signals * It can be different from url(), for instance if we display a index.html */ - QString locationBarURL(); + TQString locationBarURL(); /** * @return the servicetype this view is currently displaying */ - QString serviceType(); + TQString serviceType(); /** * @return the servicetypes this view is capable to display */ - QStringList serviceTypes(); + TQStringList serviceTypes(); /** * @return the part embedded into this view |