summaryrefslogtreecommitdiffstats
path: root/src/progs/psp/xml/xml_psp_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/progs/psp/xml/xml_psp_parser.cpp')
-rw-r--r--src/progs/psp/xml/xml_psp_parser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/progs/psp/xml/xml_psp_parser.cpp b/src/progs/psp/xml/xml_psp_parser.cpp
index 8b8875b..d2d4aff 100644
--- a/src/progs/psp/xml/xml_psp_parser.cpp
+++ b/src/progs/psp/xml/xml_psp_parser.cpp
@@ -27,11 +27,11 @@ void Psp::XmlToData::parseData(TQDomElement element, Data &data)
{
bool ok;
data.algorithm = element.attribute("algorithm").toUInt(&ok);
- if ( !ok ) qFatal("Missing or invalid algorithm");
+ if ( !ok ) tqFatal("Missing or invalid algorithm");
data.overprogram = element.attribute("overprogram").toUInt(&ok);
- if ( !ok ) qFatal("Missing or invalid overprogram");
+ if ( !ok ) tqFatal("Missing or invalid overprogram");
data.tries = element.attribute("tries").toUInt(&ok);
- if ( !ok ) qFatal("Missing or invalid tries");
+ if ( !ok ) tqFatal("Missing or invalid tries");
}
void Psp::XmlToData::outputData(const Data &data, TQTextStream &s) const