summaryrefslogtreecommitdiffstats
path: root/juk/mediafiles.h
diff options
context:
space:
mode:
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