diff options
Diffstat (limited to 'kioslave/audiocd/plugins/audiocdencoder.h')
-rw-r--r-- | kioslave/audiocd/plugins/audiocdencoder.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kioslave/audiocd/plugins/audiocdencoder.h b/kioslave/audiocd/plugins/audiocdencoder.h index a9ff691f..cac9b2aa 100644 --- a/kioslave/audiocd/plugins/audiocdencoder.h +++ b/kioslave/audiocd/plugins/audiocdencoder.h @@ -65,7 +65,7 @@ public: * @returns the generic user string type/name of this encoder * Examples: "MP3", "Ogg Vorbis", "Wav", "FID Level 2", etc */ - virtual QString type() const = 0; + virtual TQString type() const = 0; /** * @returns the mime type for the files this encoder produces. @@ -86,7 +86,7 @@ public: * information if they want to so it can be inserted * where neccessary (start, middle, end, or combos etc). */ - virtual void fillSongInfo( KCDDB::CDInfo info, int track, const QString &comment ) = 0; + virtual void fillSongInfo( KCDDB::CDInfo info, int track, const TQString &comment ) = 0; /** * Perform any initial file creation necessary for a new song (that @@ -114,13 +114,13 @@ public: /** * Returns a configure widget for the encoder */ - virtual QWidget* getConfigureWidget(KConfigSkeleton** manager) const + virtual TQWidget* getConfigureWidget(KConfigSkeleton** manager) const { Q_UNUSED(manager); return NULL; }; /** * Returns the last error message; called when e.g. read() returns -1. */ - virtual QString lastErrorMessage() const { return QString::null; } + virtual TQString lastErrorMessage() const { return TQString::null; } /** * Helper function to load all of the AudioCD Encoders from libraries. @@ -130,7 +130,7 @@ public: * @param slave ioslave needed if the plugin is going to be used to encode something. * @param encoders container for new encoders. */ - static void findAllPlugins(KIO::SlaveBase *slave, QPtrList<AudioCDEncoder> &encoders); + static void findAllPlugins(KIO::SlaveBase *slave, TQPtrList<AudioCDEncoder> &encoders); protected: /** |