summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/macros/lib/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/plugins/macros/lib/context.h')
-rw-r--r--kexi/plugins/macros/lib/context.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kexi/plugins/macros/lib/context.h b/kexi/plugins/macros/lib/context.h
index 4f9621cc..9bb0f5eb 100644
--- a/kexi/plugins/macros/lib/context.h
+++ b/kexi/plugins/macros/lib/context.h
@@ -40,7 +40,7 @@ namespace KoMacro {
*/
class KOMACRO_EXPORT Context
: public TQObject
- , public KShared
+ , public TDEShared
{
Q_OBJECT
@@ -51,7 +51,7 @@ namespace KoMacro {
*
* @param macro The @a Macro this @a Context belongs to.
*/
- explicit Context(KSharedPtr<Macro> macro);
+ explicit Context(TDESharedPtr<Macro> macro);
/**
* Destructor.
@@ -68,7 +68,7 @@ namespace KoMacro {
* @return the @a Variable defined with name @p name or
* NULL if there exists no such variable.
*/
- KSharedPtr<Variable> variable(const TQString& name) const;
+ TDESharedPtr<Variable> variable(const TQString& name) const;
/**
* @return a map of all @a Variable instance that are defined
@@ -80,18 +80,18 @@ namespace KoMacro {
* Set the variable @p variable defined with name @p name . If
* there exists already a variable with that name replace it.
*/
- void setVariable(const TQString& name, KSharedPtr<Variable> variable);
+ void setVariable(const TQString& name, TDESharedPtr<Variable> variable);
/**
* @return the associated macro
*/
- KSharedPtr<Macro> macro() const;
+ TDESharedPtr<Macro> macro() const;
/**
* @return the currently selected @a MacroItem instance
* or NULL if there is no @a MacroItem selected yet.
*/
- KSharedPtr<MacroItem> macroItem() const;
+ TDESharedPtr<MacroItem> macroItem() const;
/**
* @return true if the last @a activate() stopped with an
@@ -114,7 +114,7 @@ namespace KoMacro {
* remembers what @a Action should be executed next and
* calling this slot just activates those @a Action .
*/
- virtual void activate(TQValueList<KSharedPtr <MacroItem> >::ConstIterator it);
+ virtual void activate(TQValueList<TDESharedPtr <MacroItem> >::ConstIterator it);
public slots:
@@ -123,7 +123,7 @@ namespace KoMacro {
* @a Context @p context which will be used as
* parent context for this context.
*/
- virtual void activate(KSharedPtr<Context> context);
+ virtual void activate(TDESharedPtr<Context> context);
/**
* This slot continues execution.