summaryrefslogtreecommitdiffstats
path: root/kexi/formeditor/formIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/formeditor/formIO.h')
-rw-r--r--kexi/formeditor/formIO.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/formeditor/formIO.h b/kexi/formeditor/formIO.h
index f23084337..5556b2400 100644
--- a/kexi/formeditor/formIO.h
+++ b/kexi/formeditor/formIO.h
@@ -149,12 +149,12 @@ class KFORMEDITOR_EXPORT FormIO : public TQObject
static void loadWidget(Container *container,
const TQDomElement &el, TQWidget *tqparent=0);
- /*! Save an element in the \a domDoc as child of \a tqparentNode.
+ /*! Save an element in the \a domDoc as child of \a parentNode.
The element will be saved like this :
\code <$(tagName) name = "$(property)">< value_as_XML ><$(tagName)/>
\endcode
*/
- static void savePropertyElement(TQDomElement &tqparentNode, TQDomDocument &domDoc, const TQString &tagName,
+ static void savePropertyElement(TQDomElement &parentNode, TQDomDocument &domDoc, const TQString &tagName,
const TQString &property, const TQVariant &value);
/*! Read an object property in the DOM doc.
@@ -165,7 +165,7 @@ class KFORMEDITOR_EXPORT FormIO : public TQObject
static TQVariant readPropertyValue(TQDomNode node, TQObject *obj, const TQString &name);
/*! Write an object property in the DOM doc.
- \param tqparentNode the DOM document to write to
+ \param parentNode the DOM document to write to
\param name the name of the property being saved
\param value the value of this property
\param w the widget whose property is being saved
@@ -174,12 +174,12 @@ class KFORMEDITOR_EXPORT FormIO : public TQObject
Properties of subwidget are saved with subwidget="true" arribute added
to 'property' XML element.
*/
- static void savePropertyValue(TQDomElement &tqparentNode, TQDomDocument &tqparent, const char *name,
+ static void savePropertyValue(TQDomElement &parentNode, TQDomDocument &tqparent, const char *name,
const TQVariant &value, TQWidget *w, WidgetLibrary *lib=0);
protected:
- /*! Saves the TQVariant \a value as text to be included in an xml file, with \a tqparentNode.*/
- static void writeVariant(TQDomDocument &tqparent, TQDomElement &tqparentNode, TQVariant value);
+ /*! Saves the TQVariant \a value as text to be included in an xml file, with \a parentNode.*/
+ static void writeVariant(TQDomDocument &tqparent, TQDomElement &parentNode, TQVariant value);
/*! Creates a toplevel widget from the TQDomElement \a element in the Form \a form,
with \a tqparent as tqparent widget.