summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/drag.h
diff options
context:
space:
mode:
Diffstat (limited to 'kregexpeditor/drag.h')
-rw-r--r--kregexpeditor/drag.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kregexpeditor/drag.h b/kregexpeditor/drag.h
index 1ec220b..7173444 100644
--- a/kregexpeditor/drag.h
+++ b/kregexpeditor/drag.h
@@ -28,16 +28,16 @@ class RegExpEditorWindow;
Class used for drag and drop in the RegExp widget.
@internal
*/
-class RegExpWidgetDrag :public QDragObject
+class RegExpWidgetDrag :public TQDragObject
{
public:
RegExpWidgetDrag( RegExp* regexp , TQWidget* dragSource);
~RegExpWidgetDrag();
virtual const char * format ( int i = 0 ) const;
- virtual TQByteArray encodedData ( const char * ) const;
+ virtual TQByteArray tqencodedData ( const char * ) const;
static bool canDecode(TQDragMoveEvent* event);
static RegExpWidget* decode(TQDropEvent* event, RegExpEditorWindow* window,
- TQWidget* parent);
+ TQWidget* tqparent);
private:
RegExp* _regexp;
};