summaryrefslogtreecommitdiffstats
path: root/quanta/parsers/dtd/dtdparser.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:49:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-04 00:28:32 +0900
commit10ff449a14f1c053295e0b7cfd678bebc11ca880 (patch)
tree2ea00d5a47a6ba272486621e87243db3350bcb1a /quanta/parsers/dtd/dtdparser.cpp
parentd72f4843816818bdb27e7faae86e68d51d624267 (diff)
downloadtdewebdev-10ff449a14f1c053295e0b7cfd678bebc11ca880.tar.gz
tdewebdev-10ff449a14f1c053295e0b7cfd678bebc11ca880.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'quanta/parsers/dtd/dtdparser.cpp')
-rw-r--r--quanta/parsers/dtd/dtdparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/quanta/parsers/dtd/dtdparser.cpp b/quanta/parsers/dtd/dtdparser.cpp
index 4f1b9d14..e2511b18 100644
--- a/quanta/parsers/dtd/dtdparser.cpp
+++ b/quanta/parsers/dtd/dtdparser.cpp
@@ -142,7 +142,7 @@ bool DTDParser::parse(const TQString &targetDir, bool entitiesOnly)
TQFile file( DTD::dirName + "entities.tag" );
if ( file.open( IO_WriteOnly ) )
{
- DTD::entityStream.setDevice(TQT_TQIODEVICE(&file));
+ DTD::entityStream.setDevice(&file);
DTD::entityStream.setEncoding(TQTextStream::UnicodeUTF8);
DTD::entityStream << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << endl;
DTD::entityStream << "<!DOCTYPE TAGS>" << endl