summaryrefslogtreecommitdiffstats
path: root/parts/konsole/konsoleviewpart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/konsole/konsoleviewpart.cpp')
-rw-r--r--parts/konsole/konsoleviewpart.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/parts/konsole/konsoleviewpart.cpp b/parts/konsole/konsoleviewpart.cpp
index 8d7892a5..c103a3a8 100644
--- a/parts/konsole/konsoleviewpart.cpp
+++ b/parts/konsole/konsoleviewpart.cpp
@@ -11,7 +11,7 @@
#include "konsoleviewpart.h"
-#include <qwhatsthis.h>
+#include <tqwhatsthis.h>
#include <kdevgenericfactory.h>
#include <kiconloader.h>
@@ -28,14 +28,14 @@ typedef KDevGenericFactory<KonsoleViewPart> KonsoleViewFactory;
static const KDevPluginInfo data("kdevkonsoleview");
K_EXPORT_COMPONENT_FACTORY(libkdevkonsoleview, KonsoleViewFactory(data))
-KonsoleViewPart::KonsoleViewPart(QObject *parent, const char *name, const QStringList &)
+KonsoleViewPart::KonsoleViewPart(TQObject *parent, const char *name, const TQStringList &)
: KDevPlugin(&data, parent, name ? name : "KonsoleViewPart")
{
setInstance( KonsoleViewFactory::instance() );
m_widget = new KDevShellWidget( 0, "konsole widget" );
- QWhatsThis::add(m_widget, i18n("<b>Konsole</b><p>"
+ TQWhatsThis::add(m_widget, i18n("<b>Konsole</b><p>"
"This window contains an embedded konsole window. It will try to follow you when "
"you navigate in the source directories")
);
@@ -48,7 +48,7 @@ KonsoleViewPart::KonsoleViewPart(QObject *parent, const char *name, const QStrin
mainWindow()->embedOutputView(m_widget, i18n("Konsole"), i18n("Embedded console window"));
- connect(core(), SIGNAL(projectOpened()), this, SLOT(projectOpened()));
+ connect(core(), TQT_SIGNAL(projectOpened()), this, TQT_SLOT(projectOpened()));
}
@@ -61,7 +61,7 @@ KonsoleViewPart::~KonsoleViewPart()
void KonsoleViewPart::projectOpened()
{
- QString cd_projectdir = QString("cd ") + project()->projectDirectory() + "\n";
+ TQString cd_projectdir = TQString("cd ") + project()->projectDirectory() + "\n";
m_widget->sendInput( cd_projectdir );
}