summaryrefslogtreecommitdiffstats
path: root/src/app/playlistFile.h
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-06-13 16:09:24 +0200
committergregory guy <[email protected]>2020-06-13 16:09:24 +0200
commit2c9bc9b806f533df7b8f5349467d0f4be95314a4 (patch)
tree15f82ae94dd430374f3d939958912c4fb2855326 /src/app/playlistFile.h
parent38eaf7209a322a622e1b898eaa5477568ca9c6b6 (diff)
downloadcodeine-2c9bc9b806f533df7b8f5349467d0f4be95314a4.tar.gz
codeine-2c9bc9b806f533df7b8f5349467d0f4be95314a4.zip
Conversion qt3 -> tqt3
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/app/playlistFile.h')
-rw-r--r--src/app/playlistFile.h10
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;
};