summaryrefslogtreecommitdiffstats
path: root/kio/kio/kmimetype.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 04:12:51 +0000
commit560378aaca1784ba19806a0414a32b20c744de39 (patch)
treece0dfd7c3febf2a1adc7603d1019a8be2083c415 /kio/kio/kmimetype.h
parentd4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff)
downloadtdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz
tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kio/kmimetype.h')
-rw-r--r--kio/kio/kmimetype.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kio/kio/kmimetype.h b/kio/kio/kmimetype.h
index 22f9b72ef..131724d63 100644
--- a/kio/kio/kmimetype.h
+++ b/kio/kio/kmimetype.h
@@ -39,7 +39,7 @@ class KSimpleConfig;
*
* The starting point you need is often the static methods.
*
- * KMimeType inherits KServiceType because "text/plain" can be used to find
+ * KMimeType inherits KServiceType because "text/plain" can be used to tqfind
* services (apps and components) "which can open text/plain".
*
* @see KServiceType
@@ -113,7 +113,7 @@ public:
* Use this function only if you don't have a special URL
* for which you search a pixmap.
*
- * This function is useful to find
+ * This function is useful to tqfind
* out, which icon is usually chosen for a certain mime type. Since
* no URL is passed, it is impossible to obey icon hints in desktop
* entries for example.
@@ -149,7 +149,7 @@ public:
int _state = 0, TQString * _path = 0L ) const;
/**
- * Convenience method to find the pixmap for a URL.
+ * Convenience method to tqfind the pixmap for a URL.
*
* Call this one when you don't know the mimetype.
*
@@ -282,7 +282,7 @@ public:
* "application/octet-stream" is returned otherwise.
*
* @param _url Is the right most URL with a filesystem protocol. It
- * is up to you to find out about that if you have a nested
+ * is up to you to tqfind out about that if you have a nested
* URL. For example
* "http://localhost/mist.gz#gzip:/decompress" would have to
* pass the "http://..." URL part, while
@@ -293,7 +293,7 @@ public:
* executables)
* @param _is_local_file true if the file is local
* @param _fast_mode If set to true no disk access is allowed to
- * find out the mimetype. The result may be suboptimal, but
+ * tqfind out the mimetype. The result may be suboptimal, but
* it is @em fast.
* @return A pointer to the matching mimetype. 0L is never returned.
* @em Very @em Important: Don't store the result in a KMimeType* !
@@ -326,14 +326,14 @@ public:
* @param mode the mode of the file (used, for example, to identify
* executables)
* @param fast_mode If set to true no disk access is allowed to
- * find out the mimetype. The result may be suboptimal, but
+ * tqfind out the mimetype. The result may be suboptimal, but
* it is @em fast.
* @return A pointer to the matching mimetype. 0L is never returned.
*/
- static Ptr findByPath( const TQString& path, mode_t mode = 0, bool fast_mode = false );
+ static Ptr tqfindByPath( const TQString& path, mode_t mode = 0, bool fast_mode = false );
/**
- * Tries to find out the MIME type of a data chunk by looking for
+ * Tries to tqfind out the MIME type of a data chunk by looking for
* certain magic numbers and characteristic strings in it.
*
* @param data the data to examine
@@ -342,10 +342,10 @@ public:
* @return a pointer to the KMimeType. application/octet-stream's KMimeType of the
* type can not be found this way.
*/
- static Ptr findByContent( const TQByteArray &data, int *accuracy=0 );
+ static Ptr tqfindByContent( const TQByteArray &data, int *accuracy=0 );
/**
- * Tries to find out the MIME type of a file by looking for
+ * Tries to tqfind out the MIME type of a file by looking for
* certain magic numbers and characteristic strings in it.
* This function is similar to the previous one. Note that the
* file name is not used for determining the file type, it is just
@@ -357,7 +357,7 @@ public:
* @return a pointer to the KMimeType. application/octet-stream's KMimeType of the
* type can not be found this way.
*/
- static Ptr findByFileContent( const TQString &fileName, int *accuracy=0 );
+ static Ptr tqfindByFileContent( const TQString &fileName, int *accuracy=0 );
struct Format{
bool text : 1;
@@ -370,7 +370,7 @@ public:
* or that would be human readable after decompression.
* @since 3.2
*/
- static Format findFormatByFileContent( const TQString &fileName );
+ static Format tqfindFormatByFileContent( const TQString &fileName );
/**
* Get all the mimetypes.