diff options
Diffstat (limited to 'src/app/playlistFile.h')
-rw-r--r-- | src/app/playlistFile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/app/playlistFile.h b/src/app/playlistFile.h index 0302a85..7e468af 100644 --- a/src/app/playlistFile.h +++ b/src/app/playlistFile.h @@ -17,19 +17,19 @@ public: bool isPlaylist() const { return m_type != Unknown; } bool isValid() const { return m_isValid; } KURL firstUrl() const { return m_contents.isEmpty() ? KURL() : m_contents.first(); } - QString error() const { return m_error; } + TQString error() const { return m_error; } private: /// both only return first url currently - void parsePlsFile( QTextStream& ); - void parseM3uFile( QTextStream& ); + void parsePlsFile( TQTextStream& ); + void parseM3uFile( TQTextStream& ); KURL m_url; bool m_isRemoteFile; bool m_isValid; - QString m_error; + TQString m_error; FileFormat m_type; - QString m_path; + TQString m_path; KURL::List m_contents; }; |