summaryrefslogtreecommitdiffstats
path: root/pyuic3/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pyuic3/main.cpp')
-rw-r--r--pyuic3/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyuic3/main.cpp b/pyuic3/main.cpp
index c38980d..b1c1fdb 100644
--- a/pyuic3/main.cpp
+++ b/pyuic3/main.cpp
@@ -165,7 +165,7 @@ int main( int argc, char * argv[] )
if ( !outputFile.isEmpty() ) {
fileOut.setName( outputFile );
if (!fileOut.open( IO_WriteOnly ) )
- qFatal( "pyuic: Could not open output file '%s'", outputFile.data() );
+ tqFatal( "pyuic: Could not open output file '%s'", outputFile.data() );
} else {
fileOut.open( IO_WriteOnly, stdout );
}
@@ -182,17 +182,17 @@ int main( int argc, char * argv[] )
out.setEncoding( TQTextStream::UnicodeUTF8 );
TQFile file( fileName );
if ( !file.open( IO_ReadOnly ) )
- qFatal( "pyuic: Could not open file '%s' ", fileName );
+ tqFatal( "pyuic: Could not open file '%s' ", fileName );
TQDomDocument doc;
TQString errMsg;
int errLine;
if ( !doc.setContent( &file, &errMsg, &errLine ) )
- qFatal( TQString("pyuic: Failed to parse %s: ") + errMsg + TQString (" in line %d\n"), fileName, errLine );
+ tqFatal( TQString("pyuic: Failed to parse %s: ") + errMsg + TQString (" in line %d\n"), fileName, errLine );
TQDomElement e = doc.firstChild().toElement();
if ( e.hasAttribute("version") && e.attribute("version").toDouble() > 3.3 ) {
- qWarning( TQString("pyuic: File generated with too recent version of TQt Designer (%s vs. %s)"),
+ tqWarning( TQString("pyuic: File generated with too recent version of TQt Designer (%s vs. %s)"),
e.attribute("version").latin1(), TQT_VERSION_STR );
return 1;
}