summaryrefslogtreecommitdiffstats
path: root/juk/mediafiles.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /juk/mediafiles.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'juk/mediafiles.h')
-rw-r--r--juk/mediafiles.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/juk/mediafiles.h b/juk/mediafiles.h
index e0cc8458..342739e7 100644
--- a/juk/mediafiles.h
+++ b/juk/mediafiles.h
@@ -26,53 +26,53 @@ namespace MediaFiles
/**
* Creates a JuK specific KFileDialog with the specified parent.
*/
- QStringList openDialog(QWidget *parent = 0);
+ TQStringList openDialog(TQWidget *parent = 0);
/**
* Creates a JuK specific KFileDialog for saving a playlist with the name
* playlistName and the specified parent and returns the file name.
*/
- QString savePlaylistDialog(const QString &playlistName, QWidget *parent = 0);
+ TQString savePlaylistDialog(const TQString &playlistName, TQWidget *parent = 0);
/**
* Returns true if fileName is a supported media file.
*/
- bool isMediaFile(const QString &fileName);
+ bool isMediaFile(const TQString &fileName);
/**
* Returns true if fileName is a supported playlist file.
*/
- bool isPlaylistFile(const QString &fileName);
+ bool isPlaylistFile(const TQString &fileName);
/**
* Returns true if fileName is a mp3 file.
*/
- bool isMP3(const QString &fileName);
+ bool isMP3(const TQString &fileName);
/**
* Returns true if fileName is a mpc (aka musepack) file.
*/
- bool isMPC(const QString &fileName);
+ bool isMPC(const TQString &fileName);
/**
* Returns true if fileName is an Ogg file.
*/
- bool isOgg(const QString &fileName);
+ bool isOgg(const TQString &fileName);
/**
* Returns true if fileName is a FLAC file.
*/
- bool isFLAC(const QString &fileName);
+ bool isFLAC(const TQString &fileName);
/**
* Returns true if fileName is an Ogg/Vorbis file.
*/
- bool isVorbis(const QString &fileName);
+ bool isVorbis(const TQString &fileName);
/**
* Returns true if fileName is an Ogg/FLAC file.
*/
- bool isOggFLAC(const QString &fileName);
+ bool isOggFLAC(const TQString &fileName);
/**
* Returns a list of absolute local filenames, mapped from \p urlList.
@@ -83,7 +83,7 @@ namespace MediaFiles
* @param w KIO may need the widget to handle user interaction.
* @return list of all local files in urlList, converted to absolute paths.
*/
- QStringList convertURLsToLocal(const QStringList &urlList, QWidget *w = 0);
+ TQStringList convertURLsToLocal(const TQStringList &urlList, TQWidget *w = 0);
}
#endif