From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkonq/favicons/favicons.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libkonq/favicons/favicons.h') diff --git a/libkonq/favicons/favicons.h b/libkonq/favicons/favicons.h index 021ea3b9b..1ca337713 100644 --- a/libkonq/favicons/favicons.h +++ b/libkonq/favicons/favicons.h @@ -31,7 +31,7 @@ namespace KIO { class Job; } * place. * * After a successful download, the DCOP signal iconChanged() is emitted. - * It has the signature void iconChanged(bool, QString, QString); + * It has the signature void iconChanged(bool, TQString, TQString); * The first parameter is true if the icon is a "host" icon, that is it is * the default icon for all URLs on the given host. In this case, the * second parameter is a host name, otherwise the second parameter is the @@ -47,20 +47,20 @@ class FaviconsModule : public KDEDModule Q_OBJECT K_DCOP public: - FaviconsModule(const QCString &obj); + FaviconsModule(const TQCString &obj); virtual ~FaviconsModule(); k_dcop: /** * Looks up an icon name for a given URL. This function does not * initiate any download. If no icon for the URL or its host has - * been downloaded yet, QString::null is returned. + * been downloaded yet, TQString::null is returned. * * @param url the URL for which the icon is queried * @return the icon name suitable to pass to @ref KIconLoader or - * QString::null if no icon for this URL was found. + * TQString::null if no icon for this URL was found. */ - QString iconForURL(const KURL &url); + TQString iconForURL(const KURL &url); /** * Assiciates an icon with the given URL. If the icon was not * downloaded before or the downloaded was too long ago, a @@ -81,19 +81,19 @@ k_dcop: ASYNC downloadHostIcon(const KURL &url); k_dcop_signals: - void iconChanged(bool isHost, QString hostOrURL, QString iconName); - void infoMessage(KURL iconURL, QString msg); + void iconChanged(bool isHost, TQString hostOrURL, TQString iconName); + void infoMessage(KURL iconURL, TQString msg); private: - void startDownload(const QString &, bool, const KURL &); - QString simplifyURL(const KURL &); - QString iconNameFromURL(const KURL &); - bool isIconOld(const QString &); + void startDownload(const TQString &, bool, const KURL &); + TQString simplifyURL(const KURL &); + TQString iconNameFromURL(const KURL &); + bool isIconOld(const TQString &); private slots: - void slotData(KIO::Job *, const QByteArray &); + void slotData(KIO::Job *, const TQByteArray &); void slotResult(KIO::Job *); - void slotInfoMessage(KIO::Job *, const QString &); + void slotInfoMessage(KIO::Job *, const TQString &); void slotKill(); private: -- cgit v1.2.1