diff options
Diffstat (limited to 'parts/konsole/konsoleviewpart.cpp')
-rw-r--r-- | parts/konsole/konsoleviewpart.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/parts/konsole/konsoleviewpart.cpp b/parts/konsole/konsoleviewpart.cpp index 873ab790..63f720d9 100644 --- a/parts/konsole/konsoleviewpart.cpp +++ b/parts/konsole/konsoleviewpart.cpp @@ -13,27 +13,27 @@ #include <tqwhatsthis.h> -#include <kdevgenericfactory.h> +#include <tdevgenericfactory.h> #include <kiconloader.h> #include <tdelocale.h> -#include "kdevcore.h" -#include "kdevproject.h" -#include "kdevmainwindow.h" -#include "kdevplugininfo.h" -#include "kdevshellwidget.h" +#include "tdevcore.h" +#include "tdevproject.h" +#include "tdevmainwindow.h" +#include "tdevplugininfo.h" +#include "tdevshellwidget.h" -typedef KDevGenericFactory<KonsoleViewPart> KonsoleViewFactory; -static const KDevPluginInfo data("kdevkonsoleview"); -K_EXPORT_COMPONENT_FACTORY(libkdevkonsoleview, KonsoleViewFactory(data)) +typedef TDevGenericFactory<KonsoleViewPart> KonsoleViewFactory; +static const TDevPluginInfo data("tdevkonsoleview"); +K_EXPORT_COMPONENT_FACTORY(libtdevkonsoleview, KonsoleViewFactory(data)) KonsoleViewPart::KonsoleViewPart(TQObject *parent, const char *name, const TQStringList &) - : KDevPlugin(&data, parent, name ? name : "KonsoleViewPart") + : TDevPlugin(&data, parent, name ? name : "KonsoleViewPart") { setInstance( KonsoleViewFactory::instance() ); - m_widget = new KDevShellWidget( 0, "konsole widget" ); + m_widget = new TDevShellWidget( 0, "konsole widget" ); TQWhatsThis::add(m_widget, i18n("<b>Konsole</b><p>" "This window contains an embedded konsole window. It will try to follow you when " |