summaryrefslogtreecommitdiffstats
path: root/src/kernel/qlayout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qlayout.cpp')
-rw-r--r--src/kernel/qlayout.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/qlayout.cpp b/src/kernel/qlayout.cpp
index de9f5b9..e7ca24d 100644
--- a/src/kernel/qlayout.cpp
+++ b/src/kernel/qlayout.cpp
@@ -468,9 +468,9 @@ void QGridLayoutData::add( QGridBox *box, int row1, int row2, int col1,
{
#ifdef QT_CHECK_RANGE
if ( row2 >= 0 && row2 < row1 )
- qWarning( "QGridLayout: Multi-cell fromRow greater than toRow" );
+ tqWarning( "QGridLayout: Multi-cell fromRow greater than toRow" );
if ( col2 >= 0 && col2 < col1 )
- qWarning( "QGridLayout: Multi-cell fromCol greater than toCol" );
+ tqWarning( "QGridLayout: Multi-cell fromCol greater than toCol" );
#endif
if ( row1 == row2 && col1 == col2 ) {
add( box, row1, col1 );
@@ -1216,7 +1216,7 @@ static bool checkWidget( QLayout *l, QWidget *w )
{
if ( !w ) {
#if defined(QT_CHECK_STATE)
- qWarning( "QLayout: Cannot add null widget to %s/%s", l->className(),
+ tqWarning( "QLayout: Cannot add null widget to %s/%s", l->className(),
l->name() );
#endif
return FALSE;
@@ -1224,12 +1224,12 @@ static bool checkWidget( QLayout *l, QWidget *w )
if ( w->parentWidget() != l->mainWidget() && l->mainWidget() ) {
#if defined(QT_CHECK_STATE)
if ( w->parentWidget() )
- qWarning( "QLayout: Adding %s/%s (child of %s/%s) to layout for "
+ tqWarning( "QLayout: Adding %s/%s (child of %s/%s) to layout for "
"%s/%s", w->className(), w->name(),
w->parentWidget()->className(), w->parentWidget()->name(),
l->mainWidget()->className(), l->mainWidget()->name() );
else
- qWarning( "QLayout: Adding %s/%s (top-level widget) to layout for"
+ tqWarning( "QLayout: Adding %s/%s (top-level widget) to layout for"
" %s/%s", w->className(), w->name(),
l->mainWidget()->className(), l->mainWidget()->name() );
#endif
@@ -1264,7 +1264,7 @@ void QGridLayout::addWidget( QWidget *w, int row, int col, int alignment )
return;
if ( row < 0 || col < 0 ) {
#if defined(QT_CHECK_STATE)
- qWarning( "QGridLayout: Cannot add %s/%s to %s/%s at row %d col %d",
+ tqWarning( "QGridLayout: Cannot add %s/%s to %s/%s at row %d col %d",
w->className(), w->name(), className(), name(), row, col );
#endif
return;