summaryrefslogtreecommitdiffstats
path: root/doc/html/qlayout-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qlayout-h.html')
-rw-r--r--doc/html/qlayout-h.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/qlayout-h.html b/doc/html/qlayout-h.html
index d65c21c9..96dbec6d 100644
--- a/doc/html/qlayout-h.html
+++ b/doc/html/qlayout-h.html
@@ -88,7 +88,7 @@ body { background: #ffffff; color: black; }
#ifndef QT_NO_LAYOUT
#if 0
-Q_OBJECT
+TQ_OBJECT
#endif
static const int TQLAYOUTSIZE_MAX = INT_MAX/256/16;
@@ -214,7 +214,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 )
@@ -311,7 +311,7 @@ private:
#endif
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQLayout( const TQLayout & );
TQLayout &operator=( const TQLayout & );
#endif
@@ -326,7 +326,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 );
@@ -389,7 +389,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
@@ -403,7 +403,7 @@ class TQDockWindow;
class Q_EXPORT TQBoxLayout : public TQLayout
{
- Q_OBJECT
+ TQ_OBJECT
public:
enum Direction { LeftToRight, RightToLeft, TopToBottom, BottomToTop,
Down = TopToBottom, Up = BottomToTop };
@@ -455,7 +455,7 @@ protected:
private:
friend class TQDockWindow;
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQBoxLayout( const TQBoxLayout & );
TQBoxLayout &operator=( const TQBoxLayout & );
#endif
@@ -469,7 +469,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 );
@@ -480,7 +480,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
@@ -488,7 +488,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 );
@@ -499,7 +499,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