diff options
Diffstat (limited to 'kexi/plugins/macros/lib/macroitem.h')
-rw-r--r-- | kexi/plugins/macros/lib/macroitem.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kexi/plugins/macros/lib/macroitem.h b/kexi/plugins/macros/lib/macroitem.h index 6b996e70..210a9585 100644 --- a/kexi/plugins/macros/lib/macroitem.h +++ b/kexi/plugins/macros/lib/macroitem.h @@ -43,7 +43,7 @@ namespace KoMacro { * MacroItem choosen @a Action implementation) and holds the by the * user defined modifications like e.g. the comment on the other hand. */ - class KOMACRO_EXPORT MacroItem : public KShared + class KOMACRO_EXPORT MacroItem : public TDEShared { public: @@ -51,7 +51,7 @@ namespace KoMacro { /** * A list of \a MacroItem instances. */ - typedef TQValueList<KSharedPtr<MacroItem > > List; + typedef TQValueList<TDESharedPtr<MacroItem > > List; /** * Constructor. @@ -81,12 +81,12 @@ namespace KoMacro { * no @a Action defined yet else the returned * @a Action will be used to implement the execution. */ - KSharedPtr<Action> action() const; + TDESharedPtr<Action> action() const; /** * Set the @a Action @param action this @a MacroItem points to. */ - void setAction(KSharedPtr<Action> action); + void setAction(TDESharedPtr<Action> action); /** * @return @a Variant from the @a Variable identified with @@ -110,12 +110,12 @@ namespace KoMacro { * such a @param name in the case this @a MacroItem * doesn't have such a name. */ - KSharedPtr<Variable> variable(const TQString& name, bool checkaction = false) const; + TDESharedPtr<Variable> variable(const TQString& name, bool checkaction = false) const; /** * @return a map of @a Variable instances. */ - TQMap<TQString, KSharedPtr<Variable> > variables() const; + TQMap<TQString, TDESharedPtr<Variable> > variables() const; /** * Set the @a TQVariant @param variant as variable with the variablename @@ -128,7 +128,7 @@ namespace KoMacro { * Add a new variable with the vaiablename @param name and the given * @a TQVariant @param variant to our @a MacroItem instance. */ - KSharedPtr<Variable> addVariable(const TQString& name, const TQVariant& variant); + TDESharedPtr<Variable> addVariable(const TQString& name, const TQVariant& variant); private: /// @internal d-pointer class. |