diff options
Diffstat (limited to 'kexi/plugins/macros/lib/variable.h')
-rw-r--r-- | kexi/plugins/macros/lib/variable.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/plugins/macros/lib/variable.h b/kexi/plugins/macros/lib/variable.h index 14adf09c..cb7334aa 100644 --- a/kexi/plugins/macros/lib/variable.h +++ b/kexi/plugins/macros/lib/variable.h @@ -32,7 +32,7 @@ namespace KoMacro { /** * A variable value used to provide abstract access to variables. The * class handles TQVariant and TQObject and provides access to them. - * Variable inherits KShared and implements reference couting. So, it's + * Variable inherits TDEShared and implements reference couting. So, it's * not needed to take care of memory-managment. */ class KOMACRO_EXPORT Variable : public MetaParameter @@ -58,12 +58,12 @@ namespace KoMacro { /** * A list of variables. */ - typedef TQValueList<KSharedPtr<Variable > > List; + typedef TQValueList<TDESharedPtr<Variable > > List; /** * A map of variables. */ - typedef TQMap<TQString, KSharedPtr<Variable > > Map; + typedef TQMap<TQString, TDESharedPtr<Variable > > Map; /** * Default constructor. @@ -185,7 +185,7 @@ namespace KoMacro { * Append a @a Variable to the list of children this * @a Variable has. */ - void appendChild(KSharedPtr<Variable> variable); + void appendChild(TDESharedPtr<Variable> variable); /** * Clear the list of children this @a Variable has. |