diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
commit | 359640943bcf155faa9a067dde9e00a123276290 (patch) | |
tree | fb3d55ea5e18949042fb0064123fb73d2b1eb932 /src/attic | |
parent | a829bcdc533e154000803d517200d32fe762e85c (diff) | |
download | tqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz tqt3-359640943bcf155faa9a067dde9e00a123276290.zip |
Automated update from Qt3
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 |