diff options
Diffstat (limited to 'kpilot/conduits/docconduit/doc-factory.cc')
-rw-r--r-- | kpilot/conduits/docconduit/doc-factory.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpilot/conduits/docconduit/doc-factory.cc b/kpilot/conduits/docconduit/doc-factory.cc index 3d2a16b11..cfab20f4d 100644 --- a/kpilot/conduits/docconduit/doc-factory.cc +++ b/kpilot/conduits/docconduit/doc-factory.cc @@ -54,7 +54,7 @@ const char *DOCConduitFactory::dbDOCcreator = "REAd"; -DOCConduitFactory::DOCConduitFactory(QObject * p, const char *n): +DOCConduitFactory::DOCConduitFactory(TQObject * p, const char *n): KLibFactory(p, n) { FUNCTIONSETUP; @@ -77,8 +77,8 @@ DOCConduitFactory::~DOCConduitFactory() } -/* virtual */ QObject * DOCConduitFactory::createObject(QObject * p, - const char *n, const char *c, const QStringList & a) +/* virtual */ TQObject * DOCConduitFactory::createObject(TQObject * p, + const char *n, const char *c, const TQStringList & a) { FUNCTIONSETUP; @@ -87,7 +87,7 @@ DOCConduitFactory::~DOCConduitFactory() #endif if (qstrcmp(c, "ConduitConfigBase") == 0) { - QWidget *w = dynamic_cast<QWidget *>(p); + TQWidget *w = dynamic_cast<TQWidget *>(p); if (w) { return new DOCWidgetConfig(w,n); |