summaryrefslogtreecommitdiffstats
path: root/kregexpeditor/compoundwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kregexpeditor/compoundwidget.h')
-rw-r--r--kregexpeditor/compoundwidget.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/kregexpeditor/compoundwidget.h b/kregexpeditor/compoundwidget.h
index 07dc099..6cea5b5 100644
--- a/kregexpeditor/compoundwidget.h
+++ b/kregexpeditor/compoundwidget.h
@@ -29,10 +29,10 @@ class TQCheckBox;
Widget containing configuration details for @ref CompoundWidget
@internal
*/
-class CompoundDetailWindow :public QWidget
+class CompoundDetailWindow :public TQWidget
{
public:
- CompoundDetailWindow(TQWidget* parent, const char* name = 0);
+ CompoundDetailWindow(TQWidget* tqparent, const char* name = 0);
TQString title() const;
TQString description() const;
bool allowReplace() const;
@@ -60,15 +60,16 @@ private:
class CompoundWidget :public SingleContainerWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- CompoundWidget( RegExpEditorWindow* editorWindow, TQWidget* parent,
+ CompoundWidget( RegExpEditorWindow* editorWindow, TQWidget* tqparent,
const char* name = 0);
CompoundWidget( CompoundRegExp* regexp, RegExpEditorWindow* editorWindow,
- TQWidget* parent, const char* name = 0);
+ TQWidget* tqparent, const char* name = 0);
- virtual bool updateSelection( bool parentSelected );
- virtual TQSize sizeHint() const;
+ virtual bool updateSelection( bool tqparentSelected );
+ virtual TQSize tqsizeHint() const;
virtual RegExp* regExp() const;
virtual RegExpType type() const { return COMPOUND; }
virtual int edit();