summaryrefslogtreecommitdiffstats
path: root/lib/pluginfactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pluginfactory.h')
-rw-r--r--lib/pluginfactory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pluginfactory.h b/lib/pluginfactory.h
index dbbe2ec..1afdf8c 100644
--- a/lib/pluginfactory.h
+++ b/lib/pluginfactory.h
@@ -47,7 +47,7 @@ template <class Widget, class Action> class ConduitFactory : public KLibFactory
public:
ConduitFactory(TQObject *parent = 0, const char *name = 0) :
KLibFactory(parent,name)
- { fInstance = new KInstance(name); } ;
+ { fInstance = new TDEInstance(name); } ;
virtual ~ConduitFactory()
{ delete fInstance; } ;
@@ -91,7 +91,7 @@ protected:
return 0L;
}
- KInstance *fInstance;
+ TDEInstance *fInstance;
} ;
#endif