summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetemimetypehandler.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/libkopete/kopetemimetypehandler.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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