summaryrefslogtreecommitdiffstats
path: root/kttsd/plugins/command
diff options
context:
space:
mode:
Diffstat (limited to 'kttsd/plugins/command')
-rw-r--r--kttsd/plugins/command/commandconf.cpp4
-rw-r--r--kttsd/plugins/command/commandconf.h2
-rw-r--r--kttsd/plugins/command/commandproc.cpp4
-rw-r--r--kttsd/plugins/command/commandproc.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/kttsd/plugins/command/commandconf.cpp b/kttsd/plugins/command/commandconf.cpp
index 968c20d..9045f14 100644
--- a/kttsd/plugins/command/commandconf.cpp
+++ b/kttsd/plugins/command/commandconf.cpp
@@ -41,8 +41,8 @@
#include "commandconf.h"
/** Constructor */
-CommandConf::CommandConf( TQWidget* tqparent, const char* name, const TQStringList& /*args*/) :
- PlugInConf(tqparent, name)
+CommandConf::CommandConf( TQWidget* parent, const char* name, const TQStringList& /*args*/) :
+ PlugInConf(parent, name)
{
// kdDebug() << "CommandConf::CommandConf: Running" << endl;
m_commandProc = 0;
diff --git a/kttsd/plugins/command/commandconf.h b/kttsd/plugins/command/commandconf.h
index 4607718..2ab9810 100644
--- a/kttsd/plugins/command/commandconf.h
+++ b/kttsd/plugins/command/commandconf.h
@@ -40,7 +40,7 @@ class CommandConf : public PlugInConf {
public:
/** Constructor */
- CommandConf( TQWidget* tqparent = 0, const char* name = 0, const TQStringList &args = TQStringList());
+ CommandConf( TQWidget* parent = 0, const char* name = 0, const TQStringList &args = TQStringList());
/** Destructor */
~CommandConf();
diff --git a/kttsd/plugins/command/commandproc.cpp b/kttsd/plugins/command/commandproc.cpp
index d8b35d2..d1eb223 100644
--- a/kttsd/plugins/command/commandproc.cpp
+++ b/kttsd/plugins/command/commandproc.cpp
@@ -39,8 +39,8 @@
#include "commandproc.moc"
/** Constructor */
-CommandProc::CommandProc( TQObject* tqparent, const char* name, const TQStringList& /*args*/) :
- PlugInProc( tqparent, name )
+CommandProc::CommandProc( TQObject* parent, const char* name, const TQStringList& /*args*/) :
+ PlugInProc( parent, name )
{
kdDebug() << "CommandProc::CommandProc: Running" << endl;
m_commandProc = 0;
diff --git a/kttsd/plugins/command/commandproc.h b/kttsd/plugins/command/commandproc.h
index 0faf1f4..71eb8be 100644
--- a/kttsd/plugins/command/commandproc.h
+++ b/kttsd/plugins/command/commandproc.h
@@ -33,7 +33,7 @@ class CommandProc : public PlugInProc{
public:
/** Constructor */
- CommandProc( TQObject* tqparent = 0, const char* name = 0,
+ CommandProc( TQObject* parent = 0, const char* name = 0,
const TQStringList &args = TQStringList());
/** Destructor */