diff options
Diffstat (limited to 'src/attic')
-rw-r--r-- | src/attic/qtmultilineedit.h | 4 | ||||
-rw-r--r-- | src/attic/qttableview.cpp | 6 | ||||
-rw-r--r-- | src/attic/qttableview.h | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/attic/qtmultilineedit.h b/src/attic/qtmultilineedit.h index 3b7ccd25c..f74b66ef1 100644 --- a/src/attic/qtmultilineedit.h +++ b/src/attic/qtmultilineedit.h @@ -28,7 +28,7 @@ class TQValidator; class TQtMultiLineEdit : public TQtTableView { - Q_OBJECT + TQ_OBJECT Q_ENUMS( EchoMode WordWrap WrapPolicy ) Q_PROPERTY( int numLines READ numLines ) Q_PROPERTY( bool atBeginning READ atBeginning ) @@ -317,7 +317,7 @@ private: void processCmd( TQtMultiLineEditCommand*, bool ); private: // Disabled copy constructor and operator= -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQtMultiLineEdit( const TQtMultiLineEdit & ); TQtMultiLineEdit &operator=( const TQtMultiLineEdit & ); #endif diff --git a/src/attic/qttableview.cpp b/src/attic/qttableview.cpp index e608ae92f..21fefbd67 100644 --- a/src/attic/qttableview.cpp +++ b/src/attic/qttableview.cpp @@ -1072,7 +1072,7 @@ void TQtTableView::coverCornerSquare( bool enable ) coveringCornerSquare = enable; if ( !cornerSquare && enable ) { cornerSquare = new TQCornerSquare( this ); - Q_CHECK_PTR( cornerSquare ); + TQ_CHECK_PTR( cornerSquare ); cornerSquare->setGeometry( maxViewX() + frameWidth() + 1, maxViewY() + frameWidth() + 1, VSBEXT, @@ -1442,7 +1442,7 @@ TQScrollBar *TQtTableView::verticalScrollBar() const sb->setCursor( arrowCursor ); #endif sb->resize( sb->sizeHint() ); // height is irrelevant - Q_CHECK_PTR(sb); + TQ_CHECK_PTR(sb); sb->setTracking( FALSE ); sb->setFocusPolicy( NoFocus ); connect( sb, SIGNAL(valueChanged(int)), @@ -1474,7 +1474,7 @@ TQScrollBar *TQtTableView::horizontalScrollBar() const #endif sb->resize( sb->sizeHint() ); // width is irrelevant sb->setFocusPolicy( NoFocus ); - Q_CHECK_PTR(sb); + TQ_CHECK_PTR(sb); sb->setTracking( FALSE ); connect( sb, SIGNAL(valueChanged(int)), SLOT(horSbValue(int))); diff --git a/src/attic/qttableview.h b/src/attic/qttableview.h index 4dfb38ce7..43468c83a 100644 --- a/src/attic/qttableview.h +++ b/src/attic/qttableview.h @@ -26,7 +26,7 @@ class TQCornerSquare; class TQtTableView : public TQFrame { - Q_OBJECT + TQ_OBJECT public: virtual void setBackgroundColor( const TQColor & ); virtual void setPalette( const TQPalette & ); @@ -168,7 +168,7 @@ private: TQCornerSquare *cornerSquare; private: // Disabled copy constructor and operator= -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQtTableView( const TQtTableView & ); TQtTableView &operator=( const TQtTableView & ); #endif |