diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kofficeui/KoRuler.cpp | 2 | ||||
-rw-r--r-- | lib/kofficeui/KoTabChooser.cpp | 2 | ||||
-rw-r--r-- | lib/kopainter/ko_gray_widget.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficeui/KoRuler.cpp b/lib/kofficeui/KoRuler.cpp index b11b0604..a4cd5709 100644 --- a/lib/kofficeui/KoRuler.cpp +++ b/lib/kofficeui/KoRuler.cpp @@ -1006,7 +1006,7 @@ double KoRuler::makeIntern( double _v ) void KoRuler::setupMenu() { d->rb_menu = new TQPopupMenu(); - Q_CHECK_PTR( d->rb_menu ); + TQ_CHECK_PTR( d->rb_menu ); for ( uint i = 0 ; i <= KoUnit::U_LASTUNIT ; ++i ) { KoUnit::Unit unit = static_cast<KoUnit::Unit>( i ); diff --git a/lib/kofficeui/KoTabChooser.cpp b/lib/kofficeui/KoTabChooser.cpp index 19d93764..c38d0e62 100644 --- a/lib/kofficeui/KoTabChooser.cpp +++ b/lib/kofficeui/KoTabChooser.cpp @@ -154,7 +154,7 @@ void KoTabChooser::drawContents( TQPainter *painter ) void KoTabChooser::setupMenu() { rb_menu = new TQPopupMenu(); - Q_CHECK_PTR( rb_menu ); + TQ_CHECK_PTR( rb_menu ); mLeft = rb_menu->insertItem( i18n( "Tabulator &Left" ), this, TQT_SLOT( rbLeft() ) ); mCenter = rb_menu->insertItem( i18n( "Tabulator &Center" ), this, TQT_SLOT( rbCenter() ) ); mRight = rb_menu->insertItem( i18n( "Tabulator &Right" ), this, TQT_SLOT( rbRight() ) ); diff --git a/lib/kopainter/ko_gray_widget.cc b/lib/kopainter/ko_gray_widget.cc index 6e321152..af09dfa0 100644 --- a/lib/kopainter/ko_gray_widget.cc +++ b/lib/kopainter/ko_gray_widget.cc @@ -34,7 +34,7 @@ KoGrayWidget::KoGrayWidget(TQWidget *parent, const char *name) : super(parent, name) { m_ColorButton = new KDualColorButton(this); - Q_CHECK_PTR(m_ColorButton); + TQ_CHECK_PTR(m_ColorButton); m_ColorButton -> setFixedSize(m_ColorButton->sizeHint()); TQGridLayout *mGrid = new TQGridLayout(this, 3, 5, 5, 2); |