summaryrefslogtreecommitdiffstats
path: root/src/kernel/qwidget_x11.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qwidget_x11.cpp')
-rw-r--r--src/kernel/qwidget_x11.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kernel/qwidget_x11.cpp b/src/kernel/qwidget_x11.cpp
index 775829c..754ee9e 100644
--- a/src/kernel/qwidget_x11.cpp
+++ b/src/kernel/qwidget_x11.cpp
@@ -1250,7 +1250,7 @@ qstring_to_xtp( const QString& s )
tl, 1, XStdICCTextStyle, &tp );
#if defined(QT_DEBUG)
if ( errCode < 0 )
- qDebug( "qstring_to_xtp result code %d", errCode );
+ tqDebug( "qstring_to_xtp result code %d", errCode );
#endif
}
if ( !mapper || errCode < 0 ) {
@@ -1422,7 +1422,7 @@ void QWidget::grabMouse()
status == GrabFrozen ? "\"GrabFrozen\"" :
status == GrabInvalidTime ? "\"GrabInvalidTime\"" :
"<?>";
- qWarning( "Grabbing the mouse failed with %s", s );
+ tqWarning( "Grabbing the mouse failed with %s", s );
}
#endif
mouseGrb = this;
@@ -1464,7 +1464,7 @@ void QWidget::grabMouse( const QCursor &cursor )
status == GrabFrozen ? "\"GrabFrozen\"" :
status == GrabInvalidTime ? "\"GrabInvalidTime\"" :
"<?>";
- qWarning( "Grabbing the mouse failed with %s", s );
+ tqWarning( "Grabbing the mouse failed with %s", s );
}
#endif
mouseGrb = this;
@@ -2215,7 +2215,7 @@ void QWidget::setMinimumSize( int minw, int minh )
{
#if defined(QT_CHECK_RANGE)
if ( minw < 0 || minh < 0 )
- qWarning("QWidget::setMinimumSize: The smallest allowed size is (0,0)");
+ tqWarning("QWidget::setMinimumSize: The smallest allowed size is (0,0)");
#endif
createExtra();
if ( extra->minw == minw && extra->minh == minh )
@@ -2244,7 +2244,7 @@ void QWidget::setMaximumSize( int maxw, int maxh )
{
#if defined(QT_CHECK_RANGE)
if ( maxw > QWIDGETSIZE_MAX || maxh > QWIDGETSIZE_MAX ) {
- qWarning("QWidget::setMaximumSize: (%s/%s) "
+ tqWarning("QWidget::setMaximumSize: (%s/%s) "
"The largest allowed size is (%d,%d)",
name( "unnamed" ), className(), QWIDGETSIZE_MAX,
QWIDGETSIZE_MAX );
@@ -2252,7 +2252,7 @@ void QWidget::setMaximumSize( int maxw, int maxh )
maxh = QMIN( maxh, QWIDGETSIZE_MAX );
}
if ( maxw < 0 || maxh < 0 ) {
- qWarning("QWidget::setMaximumSize: (%s/%s) Negative sizes (%d,%d) "
+ tqWarning("QWidget::setMaximumSize: (%s/%s) Negative sizes (%d,%d) "
"are not possible",
name( "unnamed" ), className(), maxw, maxh );
maxw = QMAX( maxw, 0 );
@@ -2546,7 +2546,7 @@ int QWidget::metric( int m ) const
default:
val = 0;
#if defined(QT_CHECK_RANGE)
- qWarning( "QWidget::metric: Invalid metric command" );
+ tqWarning( "QWidget::metric: Invalid metric command" );
#endif
}
}
@@ -2800,7 +2800,7 @@ void QWidget::updateFrameStrut() const
XFree(c);
if (! p) {
- qWarning("QWidget::updateFrameStrut(): ERROR - no parent");
+ tqWarning("QWidget::updateFrameStrut(): ERROR - no parent");
return;
}