diff options
Diffstat (limited to 'tools/designer/plugins/rc')
-rw-r--r-- | tools/designer/plugins/rc/main.cpp | 2 | ||||
-rw-r--r-- | tools/designer/plugins/rc/rc2ui.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/designer/plugins/rc/main.cpp b/tools/designer/plugins/rc/main.cpp index 7d899743e..6ff2fda15 100644 --- a/tools/designer/plugins/rc/main.cpp +++ b/tools/designer/plugins/rc/main.cpp @@ -87,7 +87,7 @@ TQStringList RCFilter::import( const TQString &, const TQString& filename ) { TQFile file( filename ); if ( !file.open( IO_ReadOnly ) ) - qWarning( "uic: Could not open file '%s' ", filename.latin1() ); + tqWarning( "uic: Could not open file '%s' ", filename.latin1() ); TQTextStream in; in.setDevice( &file ); diff --git a/tools/designer/plugins/rc/rc2ui.cpp b/tools/designer/plugins/rc/rc2ui.cpp index f88f9d431..9730b8062 100644 --- a/tools/designer/plugins/rc/rc2ui.cpp +++ b/tools/designer/plugins/rc/rc2ui.cpp @@ -380,7 +380,7 @@ bool RC2UI::makeDialog() TQString outputFile = TQString(className) + ".ui"; fileOut.setName( outputFile ); if (!fileOut.open( IO_WriteOnly ) ) - qFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() ); + tqFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() ); out = new TQTextStream( &fileOut ); targetFiles.append( outputFile ); } else { @@ -838,7 +838,7 @@ bool RC2UI::makeStringTable() if (outputFile ) { fileOut.setName( outputFile ); if (!fileOut.open( IO_WriteOnly ) ) - qFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() ); + tqFatal( "rc2ui: Could not open output file '%s'", outputFile.latin1() ); out = new TQTextStream( &fileOut ); } |