summaryrefslogtreecommitdiffstats
path: root/lib/store/KoStoreDrag.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/store/KoStoreDrag.h')
-rw-r--r--lib/store/KoStoreDrag.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/store/KoStoreDrag.h b/lib/store/KoStoreDrag.h
index 0e3939d49..cbd8c40de 100644
--- a/lib/store/KoStoreDrag.h
+++ b/lib/store/KoStoreDrag.h
@@ -20,20 +20,20 @@
#ifndef koStoreDrag_h
#define koStoreDrag_h
-#include <qdragobject.h>
+#include <tqdragobject.h>
#include <koffice_export.h>
/**
* A generic drag object that holds a store (e.g. KoZipStore) in memory.
* This allows to drag-n-drop and copy-paste complex koffice objects.
* As per usual with dragobjects, an instance of KoStoreDrag must be
* created on the "sending" side (dragging or copying). The "receiving"
- * side (dropping or pasting) only uses provides()/canDecode() and encodedData().
+ * side (dropping or pasting) only uses provides()/canDecode() and tqencodedData().
*
- * To create the data in memory, create a QBuffer,
+ * To create the data in memory, create a TQBuffer,
* then KoStore::createStore( theBuffer, .... ), save the
* data into the store and delete it. Finally, call setEncodedData().
*/
-class KOSTORE_EXPORT KoStoreDrag : public QStoredDrag
+class KOSTORE_EXPORT KoStoreDrag : public TQStoredDrag
{
public:
/** Constructor.
@@ -41,15 +41,15 @@ public:
* @param dragSource must be 0 when copying to the clipboard.
* @param name object name for this drag.
*/
- KoStoreDrag( const char* nativeMimeType, QWidget *dragSource = 0L, const char *name = 0L );
+ KoStoreDrag( const char* nativeMimeType, TQWidget *dragSource = 0L, const char *name = 0L );
- static bool canDecode( const char* nativeMimeType, QMimeSource* e );
+ static bool canDecode( const char* nativeMimeType, TQMimeSource* e );
/**
* Returns the mimetype of the clipboard data for a given application,
* depending on the application's native mimetype.
*/
- static QCString mimeType( const char* nativeMimeType );
+ static TQCString mimeType( const char* nativeMimeType );
};
#endif