summaryrefslogtreecommitdiffstats
path: root/ksquirrel/imageedit
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/imageedit')
-rw-r--r--ksquirrel/imageedit/sq_bcglabel.cpp2
-rw-r--r--ksquirrel/imageedit/sq_bcglabel.h2
-rw-r--r--ksquirrel/imageedit/sq_converter.cpp2
-rw-r--r--ksquirrel/imageedit/sq_converter.h2
-rw-r--r--ksquirrel/imageedit/sq_label.cpp2
-rw-r--r--ksquirrel/imageedit/sq_label.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/ksquirrel/imageedit/sq_bcglabel.cpp b/ksquirrel/imageedit/sq_bcglabel.cpp
index 968dbd9..39c5f62 100644
--- a/ksquirrel/imageedit/sq_bcglabel.cpp
+++ b/ksquirrel/imageedit/sq_bcglabel.cpp
@@ -17,7 +17,7 @@
#include "sq_bcglabel.h"
-SQ_BCGLabel::SQ_BCGLabel(TQWidget *tqparent, const char *name, WFlags f) : TQLabel(tqparent, name, f | TQt::WNoAutoErase)
+SQ_BCGLabel::SQ_BCGLabel(TQWidget *parent, const char *name, WFlags f) : TQLabel(parent, name, f | TQt::WNoAutoErase)
{
setScaledContents(false);
diff --git a/ksquirrel/imageedit/sq_bcglabel.h b/ksquirrel/imageedit/sq_bcglabel.h
index 7c9bc86..d8546a9 100644
--- a/ksquirrel/imageedit/sq_bcglabel.h
+++ b/ksquirrel/imageedit/sq_bcglabel.h
@@ -27,7 +27,7 @@
class SQ_BCGLabel : public TQLabel
{
public:
- SQ_BCGLabel(TQWidget *tqparent, const char *name = 0, WFlags f = 0);
+ SQ_BCGLabel(TQWidget *parent, const char *name = 0, WFlags f = 0);
~SQ_BCGLabel();
};
diff --git a/ksquirrel/imageedit/sq_converter.cpp b/ksquirrel/imageedit/sq_converter.cpp
index bcd7b70..0f5cd5f 100644
--- a/ksquirrel/imageedit/sq_converter.cpp
+++ b/ksquirrel/imageedit/sq_converter.cpp
@@ -44,7 +44,7 @@
SQ_Converter * SQ_Converter::m_sing = 0;
-SQ_Converter::SQ_Converter(TQObject *tqparent) : TQObject(tqparent)
+SQ_Converter::SQ_Converter(TQObject *parent) : TQObject(parent)
{
m_sing = this;
diff --git a/ksquirrel/imageedit/sq_converter.h b/ksquirrel/imageedit/sq_converter.h
index 8a7d1ec..b785593 100644
--- a/ksquirrel/imageedit/sq_converter.h
+++ b/ksquirrel/imageedit/sq_converter.h
@@ -50,7 +50,7 @@ class SQ_Converter : public TQObject
TQ_OBJECT
public:
- SQ_Converter(TQObject *tqparent);
+ SQ_Converter(TQObject *parent);
~SQ_Converter();
public:
diff --git a/ksquirrel/imageedit/sq_label.cpp b/ksquirrel/imageedit/sq_label.cpp
index 70ecff8..a55a6eb 100644
--- a/ksquirrel/imageedit/sq_label.cpp
+++ b/ksquirrel/imageedit/sq_label.cpp
@@ -21,7 +21,7 @@
#define MARGIN 15
-SQ_Label::SQ_Label(TQWidget *tqparent, const char *name) : TQWidget(tqparent, name), single(false)
+SQ_Label::SQ_Label(TQWidget *parent, const char *name) : TQWidget(parent, name), single(false)
{}
SQ_Label::~SQ_Label()
diff --git a/ksquirrel/imageedit/sq_label.h b/ksquirrel/imageedit/sq_label.h
index a1fed65..6d0edd5 100644
--- a/ksquirrel/imageedit/sq_label.h
+++ b/ksquirrel/imageedit/sq_label.h
@@ -23,7 +23,7 @@
class SQ_Label : public TQWidget
{
public:
- SQ_Label(TQWidget *tqparent = 0, const char *name = 0);
+ SQ_Label(TQWidget *parent = 0, const char *name = 0);
~SQ_Label();
void setText(const TQString &lt, const TQString &rt);