diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/dialogs/qmessagebox.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/dialogs/qmessagebox.cpp')
-rw-r--r-- | src/dialogs/qmessagebox.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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 |