summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetemimetypehandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/kopetemimetypehandler.h')
-rw-r--r--kopete/libkopete/kopetemimetypehandler.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/libkopete/kopetemimetypehandler.h b/kopete/libkopete/kopetemimetypehandler.h
index 8f3235f0..206bcffa 100644
--- a/kopete/libkopete/kopetemimetypehandler.h
+++ b/kopete/libkopete/kopetemimetypehandler.h
@@ -51,12 +51,12 @@ public:
/**
* Returns a list of mime types this object is registered to handle
*/
- const QStringList mimeTypes() const;
+ const TQStringList mimeTypes() const;
/**
* Returns a list of protocols this object is registered to handle
*/
- const QStringList protocols() const;
+ const TQStringList protocols() const;
/**
* Returns true if this handler can accept remote files direcltly;
@@ -78,7 +78,7 @@ public:
* @param mimeType The mime type of the URL
* @param url The url to handle
*/
- virtual void handleURL( const QString &mimeType, const KURL &url ) const;
+ virtual void handleURL( const TQString &mimeType, const KURL &url ) const;
protected:
/**
@@ -87,7 +87,7 @@ protected:
* @return true if registration succeeded, false if another handler is
* already set for this mime type.
*/
- bool registerAsMimeHandler( const QString &mimeType );
+ bool registerAsMimeHandler( const TQString &mimeType );
/**
* Register this object as the handler of type @p protocol.
@@ -95,7 +95,7 @@ protected:
* @return true if registration succeeded, false if another handler is
* already set for this protocol.
*/
- bool registerAsProtocolHandler( const QString &protocol );
+ bool registerAsProtocolHandler( const TQString &protocol );
private:
/**
@@ -108,7 +108,7 @@ private:
*
* @return true if a handler was able to process the URL, false otherwise
*/
- static bool dispatchToHandler( const KURL &url, const QString &mimeType, MimeTypeHandler *handler );
+ static bool dispatchToHandler( const KURL &url, const TQString &mimeType, MimeTypeHandler *handler );
class Private;
Private *d;
@@ -122,9 +122,9 @@ class KOPETE_EXPORT EmoticonMimeTypeHandler : public MimeTypeHandler
public:
EmoticonMimeTypeHandler();
- const QStringList mimeTypes() const;
+ const TQStringList mimeTypes() const;
- void handleURL( const QString &mimeType, const KURL &url ) const;
+ void handleURL( const TQString &mimeType, const KURL &url ) const;
};
} // Kopete