diff options
Diffstat (limited to 'kttsd/plugins/epos')
-rw-r--r-- | kttsd/plugins/epos/eposconf.cpp | 4 | ||||
-rw-r--r-- | kttsd/plugins/epos/eposconf.h | 2 | ||||
-rw-r--r-- | kttsd/plugins/epos/eposproc.cpp | 4 | ||||
-rw-r--r-- | kttsd/plugins/epos/eposproc.h | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/kttsd/plugins/epos/eposconf.cpp b/kttsd/plugins/epos/eposconf.cpp index b3cd27d..a755ac8 100644 --- a/kttsd/plugins/epos/eposconf.cpp +++ b/kttsd/plugins/epos/eposconf.cpp @@ -48,8 +48,8 @@ #include "eposconf.moc" /** Constructor */ -EposConf::EposConf( TQWidget* tqparent, const char* name, const TQStringList& /*args*/) : - PlugInConf(tqparent, name) +EposConf::EposConf( TQWidget* parent, const char* name, const TQStringList& /*args*/) : + PlugInConf(parent, name) { // kdDebug() << "EposConf::EposConf: Running" << endl; m_eposProc = 0; diff --git a/kttsd/plugins/epos/eposconf.h b/kttsd/plugins/epos/eposconf.h index 667d445..bfbe346 100644 --- a/kttsd/plugins/epos/eposconf.h +++ b/kttsd/plugins/epos/eposconf.h @@ -47,7 +47,7 @@ class EposConf : public PlugInConf { public: /** Constructor */ - EposConf( TQWidget* tqparent = 0, const char* name = 0, const TQStringList &args = TQStringList()); + EposConf( TQWidget* parent = 0, const char* name = 0, const TQStringList &args = TQStringList()); /** Destructor */ ~EposConf(); diff --git a/kttsd/plugins/epos/eposproc.cpp b/kttsd/plugins/epos/eposproc.cpp index ae7973c..670a1c4 100644 --- a/kttsd/plugins/epos/eposproc.cpp +++ b/kttsd/plugins/epos/eposproc.cpp @@ -43,8 +43,8 @@ #include "eposproc.moc" /** Constructor */ -EposProc::EposProc( TQObject* tqparent, const char* name, const TQStringList& ) : - PlugInProc( tqparent, name ){ +EposProc::EposProc( TQObject* parent, const char* name, const TQStringList& ) : + PlugInProc( parent, name ){ kdDebug() << "EposProc::EposProc: Running" << endl; m_state = psIdle; m_waitingStop = false; diff --git a/kttsd/plugins/epos/eposproc.h b/kttsd/plugins/epos/eposproc.h index 0689481..e0fe6d3 100644 --- a/kttsd/plugins/epos/eposproc.h +++ b/kttsd/plugins/epos/eposproc.h @@ -43,7 +43,7 @@ class EposProc : public PlugInProc{ /** * Constructor */ - EposProc( TQObject* tqparent = 0, const char* name = 0, const TQStringList &args = TQStringList()); + EposProc( TQObject* parent = 0, const char* name = 0, const TQStringList &args = TQStringList()); /** * Destructor |