summaryrefslogtreecommitdiffstats
path: root/doc/html/qaction-h.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2018-10-17 19:46:30 +0900
committerMichele Calgaro <[email protected]>2018-10-17 19:46:30 +0900
commit69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch)
tree7b133311a4d5e5394f2612dced305f815c04847b /doc/html/qaction-h.html
parente07baa10b7b8e7105e02a621efadac67216c61ed (diff)
downloadtqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz
tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/qaction-h.html')
-rw-r--r--doc/html/qaction-h.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qaction-h.html b/doc/html/qaction-h.html
index 7d02afa73..11a06f9e4 100644
--- a/doc/html/qaction-h.html
+++ b/doc/html/qaction-h.html
@@ -84,7 +84,7 @@ body { background: #ffffff; color: black; }
#include "ntqkeysequence.h"
#endif // QT_H
-#ifndef QT_NO_ACTION
+#ifndef TQT_NO_ACTION
class TQActionPrivate;
class TQActionGroupPrivate;
@@ -104,14 +104,14 @@ class Q_EXPORT TQAction : public TQObject
TQ_PROPERTY( TQString toolTip READ toolTip WRITE setToolTip )
TQ_PROPERTY( TQString statusTip READ statusTip WRITE setStatusTip )
TQ_PROPERTY( TQString whatsThis READ whatsThis WRITE setWhatsThis )
-#ifndef QT_NO_ACCEL
+#ifndef TQT_NO_ACCEL
TQ_PROPERTY( TQKeySequence accel READ accel WRITE setAccel )
#endif
TQ_PROPERTY( bool visible READ isVisible WRITE setVisible )
public:
TQAction( TQObject* parent, const char* name = 0 );
-#ifndef QT_NO_ACCEL
+#ifndef TQT_NO_ACCEL
TQAction( const TQString&amp; menuText, TQKeySequence accel,
TQObject* parent, const char* name = 0 );
TQAction( const TQIconSet&amp; icon, const TQString&amp; menuText, TQKeySequence accel,
@@ -137,7 +137,7 @@ public:
TQString statusTip() const;
virtual void setWhatsThis( const TQString&amp; );
TQString whatsThis() const;
-#ifndef QT_NO_ACCEL
+#ifndef TQT_NO_ACCEL
virtual void setAccel( const TQKeySequence&amp; key );
TQKeySequence accel() const;
#endif