From f08f58fdc18573fbdf637e872a0a4646be58628c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 3 Dec 2023 00:48:10 +0900 Subject: Replaced various '#define' with actual strings - part 5 Signed-off-by: Michele Calgaro --- kgeography/src/mapparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kgeography/src') diff --git a/kgeography/src/mapparser.cpp b/kgeography/src/mapparser.cpp index 018bfd18..92920d45 100644 --- a/kgeography/src/mapparser.cpp +++ b/kgeography/src/mapparser.cpp @@ -30,7 +30,7 @@ bool mapReader::parseMap(const TQString &path) TQFile xmlFile(path); if (xmlFile.exists()) { - TQXmlInputSource source(TQT_TQIODEVICE(&xmlFile)); + TQXmlInputSource source(&xmlFile); setContentHandler(&handler); if (parse(source)) return true; p_error = handler.errorString(); -- cgit v1.2.1