diff options
Diffstat (limited to 'tools/designer/plugins')
-rw-r--r-- | tools/designer/plugins/cppeditor/yyreg.cpp | 6 | ||||
-rw-r--r-- | tools/designer/plugins/dlg/dlg2ui.cpp | 2 | ||||
-rw-r--r-- | tools/designer/plugins/glade/glade2ui.cpp | 2 | ||||
-rw-r--r-- | tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp | 4 | ||||
-rw-r--r-- | tools/designer/plugins/kdevdlg/main.cpp | 2 | ||||
-rw-r--r-- | tools/designer/plugins/rc/main.cpp | 2 | ||||
-rw-r--r-- | tools/designer/plugins/rc/rc2ui.cpp | 4 |
7 files changed, 11 insertions, 11 deletions
diff --git a/tools/designer/plugins/cppeditor/yyreg.cpp b/tools/designer/plugins/cppeditor/yyreg.cpp index 144c99f..0648e36 100644 --- a/tools/designer/plugins/cppeditor/yyreg.cpp +++ b/tools/designer/plugins/cppeditor/yyreg.cpp @@ -71,7 +71,7 @@ enum { Tok_Boi, Tok_Ampersand, Tok_Aster, Tok_LeftParen, Tok_RightParen, /* The following variables store the lexical analyzer state. The best way to understand them is to implement a function myGetToken() that calls - getToken(), to add some qDebug() statements in there and then to + getToken(), to add some tqDebug() statements in there and then to #define getToken() myGetToken(). */ static QString *yyIn; // the input stream @@ -143,7 +143,7 @@ static void stopTokenizer() */ static int getToken() { - // why "+ 2"? try putting some qDebug()'s and see + // why "+ 2"? try putting some tqDebug()'s and see yyPos = yyCurPos + 2; for ( ;; ) { @@ -177,7 +177,7 @@ static int getToken() around with the tokenizer state to effectively ignore the comment. Beware of off-by-one and off-by-two bugs when you modify this code by adding - qDebug()'s here and there. + tqDebug()'s here and there. */ if ( yyCurPos >= 0 ) { int lineStart = yyIn->findRev( QChar('\n'), yyCurPos ) + 1; diff --git a/tools/designer/plugins/dlg/dlg2ui.cpp b/tools/designer/plugins/dlg/dlg2ui.cpp index c309eb2..66a485a 100644 --- a/tools/designer/plugins/dlg/dlg2ui.cpp +++ b/tools/designer/plugins/dlg/dlg2ui.cpp @@ -1617,7 +1617,7 @@ QStringList Dlg2Ui::convertQtArchitectDlgFile( const QString& fileName ) outf.setName( outFileName ); if ( !outf.open(IO_WriteOnly) ) { - qWarning( "dlg2ui: Could not open output file '%s'", + tqWarning( "dlg2ui: Could not open output file '%s'", outFileName.latin1() ); return QStringList(); } diff --git a/tools/designer/plugins/glade/glade2ui.cpp b/tools/designer/plugins/glade/glade2ui.cpp index 39ff5e8..07efef2 100644 --- a/tools/designer/plugins/glade/glade2ui.cpp +++ b/tools/designer/plugins/glade/glade2ui.cpp @@ -2181,7 +2181,7 @@ QStringList Glade2Ui::convertGladeFile( const QString& fileName ) outFileName += QString( ".ui" ); FILE *out = fopen( outFileName.latin1(), "w" ); if ( out == 0 ) { - qWarning( "glade2ui: Could not open file '%s'", + tqWarning( "glade2ui: Could not open file '%s'", outFileName.latin1() ); } else { if ( !yyOut.isEmpty() ) diff --git a/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp b/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp index bce7fb2..2934612 100644 --- a/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp +++ b/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp @@ -251,7 +251,7 @@ bool KDEVDLG2UI::parse() QString outputFile = QString( className ) + ".ui"; fileOut.setName( outputFile ); if (!fileOut.open( IO_WriteOnly ) ) - qFatal( "kdevdlg2ui: Could not open output file '%s'", outputFile.latin1() ); + tqFatal( "kdevdlg2ui: Could not open output file '%s'", outputFile.latin1() ); out = new QTextStream( &fileOut ); targetFiles.append( outputFile ); } else { @@ -515,7 +515,7 @@ bool KDEVDLG2UI::writeDialog( const QString& name ) writeColor( "paletteBackgroundColor", color ); } //else { //if ( line.length() ) - //qDebug( "IGNORED: %s", line.latin1() ); + //tqDebug( "IGNORED: %s", line.latin1() ); //} } *out << "</UI>" << endl; diff --git a/tools/designer/plugins/kdevdlg/main.cpp b/tools/designer/plugins/kdevdlg/main.cpp index 1247f3d..6011ca0 100644 --- a/tools/designer/plugins/kdevdlg/main.cpp +++ b/tools/designer/plugins/kdevdlg/main.cpp @@ -89,7 +89,7 @@ QStringList KDevDlgFilter::import( const QString &, const QString& filename ) { QFile 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() ); QTextStream in; in.setDevice( &file ); diff --git a/tools/designer/plugins/rc/main.cpp b/tools/designer/plugins/rc/main.cpp index f2e9abb..b3900a9 100644 --- a/tools/designer/plugins/rc/main.cpp +++ b/tools/designer/plugins/rc/main.cpp @@ -87,7 +87,7 @@ QStringList RCFilter::import( const QString &, const QString& filename ) { QFile 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() ); QTextStream in; in.setDevice( &file ); diff --git a/tools/designer/plugins/rc/rc2ui.cpp b/tools/designer/plugins/rc/rc2ui.cpp index b3e48dd..0f27730 100644 --- a/tools/designer/plugins/rc/rc2ui.cpp +++ b/tools/designer/plugins/rc/rc2ui.cpp @@ -380,7 +380,7 @@ bool RC2UI::makeDialog() QString outputFile = QString(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 QTextStream( &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 QTextStream( &fileOut ); } |