summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;