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/stdwidgetfactory.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/stdwidgetfactory.h')
-rw-r--r-- | kexi/formeditor/factories/stdwidgetfactory.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/formeditor/factories/stdwidgetfactory.h b/kexi/formeditor/factories/stdwidgetfactory.h index 5d9032f0..e91f08b9 100644 --- a/kexi/formeditor/factories/stdwidgetfactory.h +++ b/kexi/formeditor/factories/stdwidgetfactory.h @@ -31,7 +31,7 @@ class KFORMEDITOR_EXPORT KexiPictureLabel : public TQLabel TQ_OBJECT public: - KexiPictureLabel(const TQPixmap &pix, TQWidget *tqparent, const char *name); + KexiPictureLabel(const TQPixmap &pix, TQWidget *parent, const char *name); ~KexiPictureLabel(){;} virtual bool setProperty(const char *name, const TQVariant &value); @@ -44,7 +44,7 @@ class KFORMEDITOR_EXPORT Line : public TQFrame TQ_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation) public: - Line(Qt::Orientation orient, TQWidget *tqparent, const char *name); + Line(Qt::Orientation orient, TQWidget *parent, const char *name); ~Line(){;} void setOrientation(Qt::Orientation orient); @@ -58,7 +58,7 @@ class StdWidgetFactory : public KFormDesigner::WidgetFactory TQ_OBJECT public: - StdWidgetFactory(TQObject *tqparent, const char *name, const TQStringList &args); + StdWidgetFactory(TQObject *parent, const char *name, const TQStringList &args); ~StdWidgetFactory(); virtual TQWidget *createWidget(const TQCString &c, TQWidget *p, const char *n, @@ -74,7 +74,7 @@ class StdWidgetFactory : public KFormDesigner::WidgetFactory virtual bool saveSpecialProperty(const TQCString &classname, const TQString &name, const TQVariant &value, TQWidget *w, - TQDomElement &parentNode, TQDomDocument &tqparent); + TQDomElement &parentNode, TQDomDocument &parent); virtual bool readSpecialProperty(const TQCString &classname, TQDomElement &node, TQWidget *w, KFormDesigner::ObjectTreeItem *item); virtual TQValueList<TQCString> autoSaveProperties(const TQCString &classname); @@ -92,7 +92,7 @@ class StdWidgetFactory : public KFormDesigner::WidgetFactory virtual bool changeText(const TQString &newText); virtual void resizeEditor(TQWidget *editor, TQWidget *widget, const TQCString &classname); void saveListItem(TQListViewItem *item, TQDomNode &parentNode, TQDomDocument &domDoc); - void readListItem(TQDomElement &node, TQListViewItem *tqparent, KListView *listview); + void readListItem(TQDomElement &node, TQListViewItem *parent, KListView *listview); private: // KFormDesigner::Container *m_container; |