diff options
author | Michele Calgaro <[email protected]> | 2023-12-03 00:35:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-04 14:06:41 +0900 |
commit | 4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a (patch) | |
tree | 7e41080dff11a68f9864b18f4920cc4fa236fd3d | |
parent | eac2dacab7f526729a0e866a9147e194845398d0 (diff) | |
download | kaffeine-4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a.tar.gz kaffeine-4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp b/kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp index f8a85b8..ef03200 100644 --- a/kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp +++ b/kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp @@ -83,7 +83,7 @@ bool PlaylistImport::kaffeine(const TQString& playlist, TQValueList<MRL>& mrls) TQFile file(playlist); if (!file.open(IO_ReadOnly)) return false; - TQXmlInputSource source(TQT_TQIODEVICE(&file)); + TQXmlInputSource source(&file); TQXmlSimpleReader reader; MyXMLParser parser; @@ -159,7 +159,7 @@ bool PlaylistImport::noatun(const TQString& playlist, TQValueList<MRL>& mrls) TQFile file(playlist); if (!file.open(IO_ReadOnly)) return false; - TQXmlInputSource source(TQT_TQIODEVICE(&file)); + TQXmlInputSource source(&file); TQXmlSimpleReader reader; NoatunXMLParser parser; |