diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/kernel/qwidget.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qwidget.cpp')
-rw-r--r-- | src/kernel/qwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/qwidget.cpp b/src/kernel/qwidget.cpp index d0243bb..28328b8 100644 --- a/src/kernel/qwidget.cpp +++ b/src/kernel/qwidget.cpp @@ -882,7 +882,7 @@ QWidget::QWidget( QWidget *parent, const char *name, WFlags f, NFlags n ) { #if defined(QT_CHECK_STATE) && !defined(Q_WS_WIN) if ( qApp->type() == QApplication::Tty ) { - tqWarning( "QWidget: Cannot create a QWidget when no GUI " + qWarning( "QWidget: Cannot create a QWidget when no GUI " "is being used" ); } #endif @@ -954,7 +954,7 @@ QWidget::~QWidget() { #if defined (QT_CHECK_STATE) if ( paintingActive() ) - tqWarning( "%s (%s): deleted while being painted", className(), name() ); + qWarning( "%s (%s): deleted while being painted", className(), name() ); #endif // Remove myself and all children from the can-take-focus list @@ -2671,7 +2671,7 @@ void QWidget::setBackgroundMode( BackgroundMode m, BackgroundMode visual ) setBackgroundEmpty(); } else if ( m == FixedColor || m == FixedPixmap ) { #if defined(QT_DEBUG) - tqWarning( "QWidget::setBackgroundMode: FixedColor or FixedPixmap makes" + qWarning( "QWidget::setBackgroundMode: FixedColor or FixedPixmap makes" " no sense" ); #endif return; @@ -3181,7 +3181,7 @@ void QWidget::setFocusProxy( QWidget * w ) for ( QWidget* fp = w; fp; fp = fp->focusProxy() ) { if ( fp == this ) { #if defined (QT_CHECK_STATE) - tqWarning( "%s (%s): already in focus proxy chain", className(), name() ); + qWarning( "%s (%s): already in focus proxy chain", className(), name() ); #endif return; } |