diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:23:29 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:23:29 -0600 |
commit | 2dfc9a2950b3c7179ede2903d5713a8486cb0e8d (patch) | |
tree | c1725476af2ed61a0c705b9312311e971d3c07b6 /pyuic2 | |
parent | 104997c6f7b545c0095fdc1b1573367bc4cb4d5b (diff) | |
download | pytqt-2dfc9a2950b3c7179ede2903d5713a8486cb0e8d.tar.gz pytqt-2dfc9a2950b3c7179ede2903d5713a8486cb0e8d.zip |
Rename additional global TQt functions
Diffstat (limited to 'pyuic2')
-rw-r--r-- | pyuic2/uic.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuic2/uic.cpp b/pyuic2/uic.cpp index caef972..7014d17 100644 --- a/pyuic2/uic.cpp +++ b/pyuic2/uic.cpp @@ -1552,13 +1552,13 @@ int main( int argc, char * argv[] ) TQFile file( fileName ); if ( !file.open( IO_ReadOnly ) ) - qFatal( "pyuic: Could not open file '%s' ", (const char *)fileName ); + tqFatal( "pyuic: Could not open file '%s' ", (const char *)fileName ); TQFile fileOut; if (!outputFile.isEmpty()) { fileOut.setName( outputFile ); if (!fileOut.open( IO_WriteOnly ) ) - qFatal( "pyuic: Could not open output file '%s'", (const char *)outputFile ); + tqFatal( "pyuic: Could not open output file '%s'", (const char *)outputFile ); } else { fileOut.open( IO_WriteOnly, stdout ); } @@ -1567,7 +1567,7 @@ int main( int argc, char * argv[] ) TQDomDocument doc; if ( !doc.setContent( &file ) ) - qFatal( "pyuic: Failed to parse %s\n", (const char *)fileName ); + tqFatal( "pyuic: Failed to parse %s\n", (const char *)fileName ); out << "# Form implementation generated from reading ui file '" << fileName << "'" << endl; out << "#" << endl; |