diff options
Diffstat (limited to 'src/kernel/ntqlayout.h')
-rw-r--r-- | src/kernel/ntqlayout.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/kernel/ntqlayout.h b/src/kernel/ntqlayout.h index c461724a1..2405a7f15 100644 --- a/src/kernel/ntqlayout.h +++ b/src/kernel/ntqlayout.h @@ -52,7 +52,7 @@ #ifndef QT_NO_LAYOUT #if 0 -Q_OBJECT +TQ_OBJECT #endif static const int TQLAYOUTSIZE_MAX = INT_MAX/256/16; @@ -178,7 +178,7 @@ private: class Q_EXPORT TQLayout : public TQObject, public TQLayoutItem { - Q_OBJECT + TQ_OBJECT Q_ENUMS( ResizeMode ) Q_PROPERTY( int margin READ margin WRITE setMargin ) Q_PROPERTY( int spacing READ spacing WRITE setSpacing ) @@ -275,7 +275,7 @@ private: #endif private: -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQLayout( const TQLayout & ); TQLayout &operator=( const TQLayout & ); #endif @@ -290,7 +290,7 @@ inline void TQLayoutIterator::deleteCurrent() class Q_EXPORT TQGridLayout : public TQLayout { - Q_OBJECT + TQ_OBJECT public: TQGridLayout( TQWidget *parent, int nRows = 1, int nCols = 1, int border = 0, int spacing = -1, const char *name = 0 ); @@ -353,7 +353,7 @@ protected: void add( TQLayoutItem*, int row, int col ); private: -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQGridLayout( const TQGridLayout & ); TQGridLayout &operator=( const TQGridLayout & ); #endif @@ -367,7 +367,7 @@ class TQDockWindow; class Q_EXPORT TQBoxLayout : public TQLayout { - Q_OBJECT + TQ_OBJECT public: enum Direction { LeftToRight, RightToLeft, TopToBottom, BottomToTop, Down = TopToBottom, Up = BottomToTop }; @@ -419,7 +419,7 @@ protected: private: friend class TQDockWindow; -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQBoxLayout( const TQBoxLayout & ); TQBoxLayout &operator=( const TQBoxLayout & ); #endif @@ -433,7 +433,7 @@ private: class Q_EXPORT TQHBoxLayout : public TQBoxLayout { - Q_OBJECT + TQ_OBJECT public: TQHBoxLayout( TQWidget *parent, int border = 0, int spacing = -1, const char *name = 0 ); @@ -444,7 +444,7 @@ public: ~TQHBoxLayout(); private: // Disabled copy constructor and operator= -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQHBoxLayout( const TQHBoxLayout & ); TQHBoxLayout &operator=( const TQHBoxLayout & ); #endif @@ -452,7 +452,7 @@ private: // Disabled copy constructor and operator= class Q_EXPORT TQVBoxLayout : public TQBoxLayout { - Q_OBJECT + TQ_OBJECT public: TQVBoxLayout( TQWidget *parent, int border = 0, int spacing = -1, const char *name = 0 ); @@ -463,7 +463,7 @@ public: ~TQVBoxLayout(); private: // Disabled copy constructor and operator= -#if defined(Q_DISABLE_COPY) +#if defined(TQ_DISABLE_COPY) TQVBoxLayout( const TQVBoxLayout & ); TQVBoxLayout &operator=( const TQVBoxLayout & ); #endif |