summaryrefslogtreecommitdiffstats
path: root/lib/kofficecore/KoGenStyles.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kofficecore/KoGenStyles.h')
-rw-r--r--lib/kofficecore/KoGenStyles.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kofficecore/KoGenStyles.h b/lib/kofficecore/KoGenStyles.h
index 67f46da15..2a54f944a 100644
--- a/lib/kofficecore/KoGenStyles.h
+++ b/lib/kofficecore/KoGenStyles.h
@@ -216,7 +216,7 @@ public:
* @param familyName The value for style:family, e.g. text, paragraph, graphic etc.
* The family is for style:style elements only; number styles and list styles don't have one.
*
- * @param parentName If set, name of the tqparent style from which this one inherits.
+ * @param parentName If set, name of the parent style from which this one inherits.
*/
explicit KoGenStyle( int type = 0, const char* familyName = 0,
const TQString& parentName = TQString() );
@@ -249,7 +249,7 @@ public:
/// Return the family name
const char* familyName() const { return m_familyName.data(); }
- /// Return the name of style's tqparent, if set
+ /// Return the name of style's parent, if set
TQString parentName() const { return m_parentName; }
/**
@@ -379,7 +379,7 @@ public:
/**
* @return true if the style has no attributes, no properties, no style map etc.
* This can be used by applications which do not save all attributes unconditionally,
- * but only those that differ from the tqparent. But note that lookup() can't find this out...
+ * but only those that differ from the parent. But note that lookup() can't find this out...
*/
bool isEmpty() const {
if ( !m_attributes.isEmpty() || ! m_maps.isEmpty() )
@@ -393,7 +393,7 @@ public:
/**
* Write the definition of this style to @p writer, using the OASIS format.
* @param writer the KoXmlWriter in which @p elementName will be created and filled in
- * @param styles the styles collection, used to look up the tqparent style
+ * @param styles the styles collection, used to look up the parent style
* @param elementName the name of the XML element, e.g. "style:style". Don't forget to
* pass style:default-style if isDefaultStyle().
* @param name must come from the collection. It will be ignored if isDefaultStyle() is true.