diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-03 00:49:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-05 11:37:18 +0900 |
commit | 37f6b15cfbb9d49b805335435369a3a7544a6b1b (patch) | |
tree | 20698a90fcf11f9196ae2b78b72107651e95e90c /quanta/parsers | |
parent | dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca (diff) | |
download | tdewebdev-37f6b15cfbb9d49b805335435369a3a7544a6b1b.tar.gz tdewebdev-37f6b15cfbb9d49b805335435369a3a7544a6b1b.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 10ff449a14f1c053295e0b7cfd678bebc11ca880)
Diffstat (limited to 'quanta/parsers')
-rw-r--r-- | quanta/parsers/dtd/dtdparser.cpp | 2 |
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 |