summaryrefslogtreecommitdiffstats
path: root/src/widgets/qtabwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/qtabwidget.cpp')
-rw-r--r--src/widgets/qtabwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/qtabwidget.cpp b/src/widgets/qtabwidget.cpp
index 9da69d02e..b255aaabe 100644
--- a/src/widgets/qtabwidget.cpp
+++ b/src/widgets/qtabwidget.cpp
@@ -338,7 +338,7 @@ void TQTabWidget::addTab( TQWidget *child, TQTab* tab )
void TQTabWidget::insertTab( TQWidget *child, const TQString &label, int index)
{
TQTab * t = new TQTab();
- Q_CHECK_PTR( t );
+ TQ_CHECK_PTR( t );
t->label = label;
insertTab( child, t, index );
}
@@ -355,7 +355,7 @@ void TQTabWidget::insertTab( TQWidget *child, const TQString &label, int index)
void TQTabWidget::insertTab( TQWidget *child, const TQIconSet& iconset, const TQString &label, int index )
{
TQTab * t = new TQTab();
- Q_CHECK_PTR( t );
+ TQ_CHECK_PTR( t );
t->label = label;
t->iconset = new TQIconSet( iconset );
insertTab( child, t, index );