summaryrefslogtreecommitdiffstats
path: root/doc/html/qvalidator-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qvalidator-h.html')
-rw-r--r--doc/html/qvalidator-h.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/qvalidator-h.html b/doc/html/qvalidator-h.html
index 5317cb3ad..ce6eb652b 100644
--- a/doc/html/qvalidator-h.html
+++ b/doc/html/qvalidator-h.html
@@ -88,7 +88,7 @@ body { background: #ffffff; color: black; }
class Q_EXPORT TQValidator : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
TQValidator( TQObject * parent, const char *name = 0 );
~TQValidator();
@@ -99,7 +99,7 @@ public:
virtual void fixup( TQString & ) const;
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQValidator( const TQValidator & );
TQValidator& operator=( const TQValidator & );
#endif
@@ -108,7 +108,7 @@ private:
class Q_EXPORT TQIntValidator : public TQValidator
{
- Q_OBJECT
+ TQ_OBJECT
Q_PROPERTY( int bottom READ bottom WRITE setBottom )
Q_PROPERTY( int top READ top WRITE setTop )
@@ -128,7 +128,7 @@ public:
int top() const { return t; }
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQIntValidator( const TQIntValidator & );
TQIntValidator& operator=( const TQIntValidator & );
#endif
@@ -140,7 +140,7 @@ private:
class Q_EXPORT TQDoubleValidator : public TQValidator
{
- Q_OBJECT
+ TQ_OBJECT
Q_PROPERTY( double bottom READ bottom WRITE setBottom )
Q_PROPERTY( double top READ top WRITE setTop )
Q_PROPERTY( int decimals READ decimals WRITE setDecimals )
@@ -163,7 +163,7 @@ public:
int decimals() const { return d; }
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQDoubleValidator( const TQDoubleValidator & );
TQDoubleValidator& operator=( const TQDoubleValidator & );
#endif
@@ -175,7 +175,7 @@ private:
class Q_EXPORT TQRegExpValidator : public TQValidator
{
- Q_OBJECT
+ TQ_OBJECT
// Q_PROPERTY( TQRegExp regExp READ regExp WRITE setRegExp )
public:
@@ -190,7 +190,7 @@ public:
const TQRegExp& regExp() const { return r; }
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQRegExpValidator( const TQRegExpValidator& );
TQRegExpValidator& operator=( const TQRegExpValidator& );
#endif