summaryrefslogtreecommitdiffstats
path: root/doc/html/qvalidator-h.html
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-02-13 17:43:39 -0600
committerTimothy Pearson <[email protected]>2012-02-13 17:43:39 -0600
commit359640943bcf155faa9a067dde9e00a123276290 (patch)
treefb3d55ea5e18949042fb0064123fb73d2b1eb932 /doc/html/qvalidator-h.html
parenta829bcdc533e154000803d517200d32fe762e85c (diff)
downloadtqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz
tqt3-359640943bcf155faa9a067dde9e00a123276290.zip
Automated update from Qt3
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 &amp; ) const;
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQValidator( const TQValidator &amp; );
TQValidator&amp; operator=( const TQValidator &amp; );
#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 &amp; );
TQIntValidator&amp; operator=( const TQIntValidator &amp; );
#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 &amp; );
TQDoubleValidator&amp; operator=( const TQDoubleValidator &amp; );
#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&amp; regExp() const { return r; }
private:
-#if defined(Q_DISABLE_COPY)
+#if defined(TQ_DISABLE_COPY)
TQRegExpValidator( const TQRegExpValidator&amp; );
TQRegExpValidator&amp; operator=( const TQRegExpValidator&amp; );
#endif