From 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 2 Mar 2012 02:11:59 -0600 Subject: Undo prior accidental commit --- src/dialogs/qmessagebox.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/dialogs/qmessagebox.cpp') diff --git a/src/dialogs/qmessagebox.cpp b/src/dialogs/qmessagebox.cpp index d287576..37407b0 100644 --- a/src/dialogs/qmessagebox.cpp +++ b/src/dialogs/qmessagebox.cpp @@ -614,7 +614,7 @@ void QMessageBox::init( int button0, int button1, int button2 ) if ( (button2 && !button1) || (button1 && !button0) ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QMessageBox: Inconsistent button parameters" ); + qWarning( "QMessageBox: Inconsistent button parameters" ); #endif button0 = button1 = button2 = 0; } @@ -634,7 +634,7 @@ void QMessageBox::init( int button0, int button1, int button2 ) if ( (b & Default) ) { if ( mbd->defButton >= 0 ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QMessageBox: There can be at most one " + qWarning( "QMessageBox: There can be at most one " "default button" ); #endif } else { @@ -644,7 +644,7 @@ void QMessageBox::init( int button0, int button1, int button2 ) if ( (b & Escape) ) { if ( mbd->escButton >= 0 ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QMessageBox: There can be at most one " + qWarning( "QMessageBox: There can be at most one " "escape button" ); #endif } else { @@ -657,13 +657,13 @@ void QMessageBox::init( int button0, int button1, int button2 ) b = Ok; } else if ( b < 0 || b > LastButton ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QMessageBox: Invalid button specifier" ); + qWarning( "QMessageBox: Invalid button specifier" ); #endif b = Ok; } else { if ( i > 0 && mbd->button[i-1] == 0 ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QMessageBox: Inconsistent button parameters; " + qWarning( "QMessageBox: Inconsistent button parameters; " "button %d defined but not button %d", i+1, i ); #endif -- cgit v1.2.1