summaryrefslogtreecommitdiffstats
path: root/src/commandline_part.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandline_part.cpp')
-rw-r--r--src/commandline_part.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commandline_part.cpp b/src/commandline_part.cpp
index ea06722..46a02b0 100644
--- a/src/commandline_part.cpp
+++ b/src/commandline_part.cpp
@@ -23,17 +23,17 @@
#include <kstandarddirs.h>
-commandline_part::commandline_part(QObject *parent, const char *name,KCmdLineArgs *args)
- : QObject(parent, name)
+commandline_part::commandline_part(TQObject *tqparent, const char *name,KCmdLineArgs *args)
+ : TQObject(tqparent, name)
{
KGlobal::locale()->insertCatalogue("kdesvn");
KInstance * inst = kdesvnPartFactory::instance();
KGlobal::locale()->insertCatalogue(inst->instanceName());
KGlobal::dirs()->addResourceType( inst->instanceName() + "data",
- KStandardDirs::kde_default("data")+ QString::fromLatin1( inst->instanceName() ) + '/' );
+ KStandardDirs::kde_default("data")+ TQString::tqfromLatin1( inst->instanceName() ) + '/' );
- m_pCPart = new CommandExec(this,name?QString(name)+QString("_exec"):QString::fromLatin1("command_executer"),args);
+ m_pCPart = new CommandExec(this,name?TQString(name)+TQString("_exec"):TQString::tqfromLatin1("command_executer"),args);
}
commandline_part::~commandline_part()