summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:35:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-04 14:06:41 +0900
commit4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a (patch)
tree7e41080dff11a68f9864b18f4920cc4fa236fd3d
parenteac2dacab7f526729a0e866a9147e194845398d0 (diff)
downloadkaffeine-4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a.tar.gz
kaffeine-4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp4
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;