diff options
Diffstat (limited to 'kspread/kspread_style.h')
-rw-r--r-- | kspread/kspread_style.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kspread/kspread_style.h b/kspread/kspread_style.h index 58922a06..2ae6299c 100644 --- a/kspread/kspread_style.h +++ b/kspread/kspread_style.h @@ -121,7 +121,7 @@ public: * Constructor. * Creates an automatic style. * If @p style is a custom or built-in style (e.g. the default style), - * @p style becomes the tqparent style. In this case, features are NOT SET. + * @p style becomes the parent style. In this case, features are NOT SET. * @param style The style which features are copied. */ Style( Style* style ); @@ -261,9 +261,9 @@ public: Style * setProperty( Properties p ); Style * clearProperty( Properties p ); - CustomStyle * tqparent() const; + CustomStyle * parent() const; TQString const & parentName() const { return m_parentName; } - void setParent( CustomStyle * tqparent ); + void setParent( CustomStyle * parent ); /** * Returns the name of a colour. This is the same as returned by TQColor::name, but an internal cache @@ -412,7 +412,7 @@ public: * @param name The name of this style. */ CustomStyle( Style * style, TQString const & name ); - CustomStyle( TQString const & name, CustomStyle * tqparent ); + CustomStyle( TQString const & name, CustomStyle * parent ); ~CustomStyle(); TQString const & name() const { return m_name; } @@ -426,7 +426,7 @@ public: virtual TQString saveOasis( KoGenStyle& style, KoGenStyles &mainStyles ); /** * Loads the style properties from @p style . - * Determines also the tqparent's name. + * Determines also the parent's name. * @param oasisStyles map of all styles * @param style the DOM element defining the style * @param name the style's new name |