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 /libkonq/konq_faviconmgr.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 'libkonq/konq_faviconmgr.h')
-rw-r--r-- | libkonq/konq_faviconmgr.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libkonq/konq_faviconmgr.h b/libkonq/konq_faviconmgr.h index 66175f682..48c345bcd 100644 --- a/libkonq/konq_faviconmgr.h +++ b/libkonq/konq_faviconmgr.h @@ -28,7 +28,7 @@ * Maintains a list of custom icons per URL. This is only a stub * for the "favicons" KDED Module */ -class LIBKONQ_EXPORT KonqFavIconMgr : public QObject, public DCOPObject +class LIBKONQ_EXPORT KonqFavIconMgr : public TQObject, public DCOPObject { Q_OBJECT K_DCOP @@ -36,7 +36,7 @@ public: /** * Constructor. */ - KonqFavIconMgr(QObject *parent = 0, const char *name = 0); + KonqFavIconMgr(TQObject *parent = 0, const char *name = 0); /** * Downloads an icon from @p iconURL and associates @p url with it. @@ -52,15 +52,15 @@ public: /** * Looks up an icon for @p url and returns its name if found - * or QString::null otherwise + * or TQString::null otherwise */ - static QString iconForURL(const QString &url); + static TQString iconForURL(const TQString &url); k_dcop: /** * an icon changed, updates the combo box */ - virtual ASYNC notifyChange( bool, QString, QString ) = 0; + virtual ASYNC notifyChange( bool, TQString, TQString ) = 0; signals: void changed(); |