diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:30:40 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:30:40 -0600 |
commit | 32459311b349db581cc5fb0d80739a95b3d998b4 (patch) | |
tree | fd6475e6f0e015fce495961d6a0c50027bb95faa /qtruby/rubylib/designer/rbuic/main.cpp | |
parent | ef5a04df564ad5c27406c41fb55e32ad3aa39d25 (diff) | |
download | tdebindings-32459311b349db581cc5fb0d80739a95b3d998b4.tar.gz tdebindings-32459311b349db581cc5fb0d80739a95b3d998b4.zip |
Rename additional global TQt functions
Diffstat (limited to 'qtruby/rubylib/designer/rbuic/main.cpp')
-rw-r--r-- | qtruby/rubylib/designer/rbuic/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtruby/rubylib/designer/rbuic/main.cpp b/qtruby/rubylib/designer/rbuic/main.cpp index e06ff586..ed74aece 100644 --- a/qtruby/rubylib/designer/rbuic/main.cpp +++ b/qtruby/rubylib/designer/rbuic/main.cpp @@ -189,7 +189,7 @@ int main( int argc, char * argv[] ) if ( outputFile ) { fileOut.setName( outputFile ); if (!fileOut.open( IO_WriteOnly ) ) - qFatal( "rbuic: Could not open output file '%s'", outputFile ); + tqFatal( "rbuic: Could not open output file '%s'", outputFile ); } else { fileOut.open( IO_WriteOnly, stdout ); } @@ -205,13 +205,13 @@ int main( int argc, char * argv[] ) out.setEncoding( TQTextStream::UnicodeUTF8 ); TQFile file( fileName ); if ( !file.open( IO_ReadOnly ) ) - qFatal( "rbuic: Could not open file '%s' ", fileName ); + tqFatal( "rbuic: Could not open file '%s' ", fileName ); TQDomDocument doc; TQString errMsg; int errLine; if ( !doc.setContent( &file, &errMsg, &errLine ) ) - qFatal( TQString("rbuic: Failed to parse %s: ") + errMsg + TQString (" in line %d\n"), fileName, errLine ); + tqFatal( TQString("rbuic: Failed to parse %s: ") + errMsg + TQString (" in line %d\n"), fileName, errLine ); DomTool::fixDocument( doc ); |