diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kexi/formeditor/factories/containerfactory.h | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/formeditor/factories/containerfactory.h')
-rw-r--r-- | kexi/formeditor/factories/containerfactory.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kexi/formeditor/factories/containerfactory.h b/kexi/formeditor/factories/containerfactory.h index c8bdc1a6..b88b437f 100644 --- a/kexi/formeditor/factories/containerfactory.h +++ b/kexi/formeditor/factories/containerfactory.h @@ -58,7 +58,7 @@ class KFORMEDITOR_EXPORT HBox : public TQFrame TQ_OBJECT public: - HBox(TQWidget *tqparent, const char *name); + HBox(TQWidget *parent, const char *name); virtual ~HBox(){;} void setPreviewMode() {m_preview = true;} virtual void paintEvent(TQPaintEvent *ev); @@ -74,7 +74,7 @@ class KFORMEDITOR_EXPORT VBox : public TQFrame TQ_OBJECT public: - VBox(TQWidget *tqparent, const char *name); + VBox(TQWidget *parent, const char *name); virtual ~VBox(){;} void setPreviewMode() {m_preview = true;} virtual void paintEvent(TQPaintEvent *ev); @@ -90,7 +90,7 @@ class KFORMEDITOR_EXPORT Grid : public TQFrame TQ_OBJECT public: - Grid(TQWidget *tqparent, const char *name); + Grid(TQWidget *parent, const char *name); virtual ~Grid(){;} void setPreviewMode() {m_preview = true;} virtual void paintEvent(TQPaintEvent *ev); @@ -106,7 +106,7 @@ class KFORMEDITOR_EXPORT HFlow : public TQFrame TQ_OBJECT public: - HFlow(TQWidget *tqparent, const char *name); + HFlow(TQWidget *parent, const char *name); virtual ~HFlow(){;} void setPreviewMode() {m_preview = true;} virtual void paintEvent(TQPaintEvent *ev); @@ -122,7 +122,7 @@ class KFORMEDITOR_EXPORT VFlow : public TQFrame TQ_OBJECT public: - VFlow(TQWidget *tqparent, const char *name); + VFlow(TQWidget *parent, const char *name); virtual ~VFlow(){;} void setPreviewMode() {m_preview = true;} virtual void paintEvent(TQPaintEvent *ev); @@ -141,7 +141,7 @@ class KFORMEDITOR_EXPORT ContainerWidget : public TQWidget friend class KFDTabWidget; public: - ContainerWidget(TQWidget *tqparent, const char *name); + ContainerWidget(TQWidget *parent, const char *name); virtual ~ContainerWidget(); virtual TQSize tqsizeHint() const; @@ -167,7 +167,7 @@ class KFORMEDITOR_EXPORT KFDTabWidget : public KFormDesigner::TabWidget TQ_OBJECT public: - KFDTabWidget(TQWidget *tqparent, const char *name); + KFDTabWidget(TQWidget *parent, const char *name); virtual ~KFDTabWidget(); virtual TQSize tqsizeHint() const; @@ -193,7 +193,7 @@ class KFORMEDITOR_EXPORT GroupBox : public TQGroupBox TQ_OBJECT public: - GroupBox(const TQString & title, TQWidget *tqparent, const char *name); + GroupBox(const TQString & title, TQWidget *parent, const char *name); virtual ~GroupBox(); //! Used to emit handleDragMoveEvent() signal needed to control dragging over the container's surface @@ -218,7 +218,7 @@ class KFORMEDITOR_EXPORT SubForm : public TQScrollView TQ_PROPERTY(TQString formName READ formName WRITE setFormName DESIGNABLE true) public: - SubForm(TQWidget *tqparent, const char *name); + SubForm(TQWidget *parent, const char *name); ~SubForm() {} //! \return the name of the subform inside the db @@ -239,10 +239,10 @@ class ContainerFactory : public KFormDesigner::WidgetFactory TQ_OBJECT public: - ContainerFactory(TQObject *tqparent, const char *name, const TQStringList &args); + ContainerFactory(TQObject *parent, const char *name, const TQStringList &args); virtual ~ContainerFactory(); - virtual TQWidget *createWidget(const TQCString & classname, TQWidget *tqparent, const char *name, KFormDesigner::Container *container, + virtual TQWidget *createWidget(const TQCString & classname, TQWidget *parent, const char *name, KFormDesigner::Container *container, int options = DefaultOptions); virtual bool createMenuActions(const TQCString& classname, TQWidget *w, TQPopupMenu *menu, KFormDesigner::Container *container); @@ -251,7 +251,7 @@ class ContainerFactory : public KFormDesigner::WidgetFactory virtual bool previewWidget(const TQCString &classname, TQWidget *widget, KFormDesigner::Container *container); virtual bool saveSpecialProperty(const TQCString &classname, const TQString &name, - const TQVariant &value, TQWidget *w, TQDomElement &parentNode, TQDomDocument &tqparent); + const TQVariant &value, TQWidget *w, TQDomElement &parentNode, TQDomDocument &parent); virtual bool readSpecialProperty(const TQCString &classname, TQDomElement &node, TQWidget *w, KFormDesigner::ObjectTreeItem *item); virtual TQValueList<TQCString> autoSaveProperties(const TQCString &classname); |