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:07:11 +0900
commit53219858b7aacfe5745810aafb48a662ab56c5c5 (patch)
tree56d7a1e103a4ea922c4af82b6881f10c6c7ed813
parent3ba0ef175f6dfaf236342abd0bf43ab1643e86b0 (diff)
downloadkaffeine-53219858.tar.gz
kaffeine-53219858.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 4a10b01c9b1b0dd1cb28e00a1e8376cd173f013a)
-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;