|
|
|
@ -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;
|
|
|
|
|