diff options
Diffstat (limited to 'kexi/plugins/macros/lib/macro.h')
-rw-r--r-- | kexi/plugins/macros/lib/macro.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/plugins/macros/lib/macro.h b/kexi/plugins/macros/lib/macro.h index 80d50deb..cc1fd77e 100644 --- a/kexi/plugins/macros/lib/macro.h +++ b/kexi/plugins/macros/lib/macro.h @@ -40,7 +40,7 @@ namespace KoMacro { */ class KOMACRO_EXPORT Macro : public TQObject // TQt functionality like signals and slots - , public KShared // shared reference-counting + , public TDEShared // shared reference-counting , public XMLHandler // to (un-)serialize from/to XML { Q_OBJECT @@ -53,7 +53,7 @@ namespace KoMacro { * class should use this typemap rather then the TQMap direct. That * way we are more flexible on future changes. */ - typedef TQMap<TQString, KSharedPtr<Macro > > Map; + typedef TQMap<TQString, TDESharedPtr<Macro > > Map; /** * Constructor. @@ -87,13 +87,13 @@ namespace KoMacro { * @return a list of @a MacroItem instances which * are children of this @a Macro . */ - TQValueList< KSharedPtr<MacroItem> >& items() const; + TQValueList< TDESharedPtr<MacroItem> >& items() const; /** * Add the @a MacroItem @p item to the list of items * this @a Macro has. */ - void addItem(KSharedPtr<MacroItem> item); + void addItem(TDESharedPtr<MacroItem> item); /** * Removes all @a MacroItem instances this @a Macro has. @@ -117,7 +117,7 @@ namespace KoMacro { * @param context The @a Context this @a Macro should * be executed in. */ - virtual KSharedPtr<Context> execute(TQObject* sender); + virtual TDESharedPtr<Context> execute(TQObject* sender); private: /// @internal d-pointer class. |