summaryrefslogtreecommitdiffstats
path: root/doc/html/qdragobject-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qdragobject-h.html')
-rw-r--r--doc/html/qdragobject-h.html28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/html/qdragobject-h.html b/doc/html/qdragobject-h.html
index 7adbd4fd..b920c94e 100644
--- a/doc/html/qdragobject-h.html
+++ b/doc/html/qdragobject-h.html
@@ -91,7 +91,7 @@ class TQImageDragData;
#ifndef QT_NO_MIME
class Q_EXPORT TQDragObject: public TQObject, public TQMimeSource {
- Q_OBJECT
+ TQ_OBJECT
public:
TQDragObject( TQWidget * dragSource = 0, const char * name = 0 );
virtual ~TQDragObject();
@@ -122,14 +122,14 @@ protected:
private:
TQDragObjectData * d;
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQDragObject( const TQDragObject & );
TQDragObject &operator=( const TQDragObject & );
#endif
};
class Q_EXPORT TQStoredDrag: public TQDragObject {
- Q_OBJECT
+ TQ_OBJECT
TQStoredDragData * d;
public:
@@ -143,14 +143,14 @@ public:
virtual TQByteArray encodedData(const char*) const;
private:
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQStoredDrag( const TQStoredDrag & );
TQStoredDrag &operator=( const TQStoredDrag & );
#endif
};
class Q_EXPORT TQTextDrag: public TQDragObject {
- Q_OBJECT
+ TQ_OBJECT
TQTextDragPrivate* d;
public:
TQTextDrag( const TQString &,
@@ -169,14 +169,14 @@ public:
static bool decode( const TQMimeSource* e, TQString& s, TQCString& subtype );
private:
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQTextDrag( const TQTextDrag & );
TQTextDrag &operator=( const TQTextDrag & );
#endif
};
class Q_EXPORT TQImageDrag: public TQDragObject {
- Q_OBJECT
+ TQ_OBJECT
TQImage img;
TQStrList ofmts;
TQImageDragData* d;
@@ -196,7 +196,7 @@ public:
static bool decode( const TQMimeSource* e, TQPixmap& i );
private:
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQImageDrag( const TQImageDrag & );
TQImageDrag &operator=( const TQImageDrag & );
#endif
@@ -204,7 +204,7 @@ private:
class Q_EXPORT TQUriDrag: public TQStoredDrag {
- Q_OBJECT
+ TQ_OBJECT
public:
TQUriDrag( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 );
@@ -226,7 +226,7 @@ public:
static bool decodeLocalFiles( const TQMimeSource* e, TQStringList& i );
private:
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQUriDrag( const TQUriDrag & );
TQUriDrag &operator=( const TQUriDrag & );
#endif
@@ -234,7 +234,7 @@ private:
class Q_EXPORT TQColorDrag : public TQStoredDrag
{
- Q_OBJECT
+ TQ_OBJECT
TQColor color;
public:
@@ -246,7 +246,7 @@ public:
static bool decode( TQMimeSource *, TQColor &col );
private:
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQColorDrag( const TQColorDrag & );
TQColorDrag &operator=( const TQColorDrag & );
#endif
@@ -264,7 +264,7 @@ typedef TQUriDrag TQUrlDrag;
//
class Q_EXPORT TQDragManager: public TQObject {
- Q_OBJECT
+ TQ_OBJECT
private:
TQDragManager();
@@ -301,7 +301,7 @@ private:
TQPixmap *pm_cursor;
int n_cursor;
-#if defined(Q_DISABLE_COPY) // Disabled copy constructor and operator=
+#if defined(TQ_DISABLE_COPY) // Disabled copy constructor and operator=
TQDragManager( const TQDragManager & );
TQDragManager &operator=( const TQDragManager & );
#endif