summaryrefslogtreecommitdiffstats
path: root/ksayit/Freeverb_plugin
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit1b93777b6479886165554b763531d7bea5fe6c1f (patch)
treeb23eded921677315389331ca8f877c98e5be6272 /ksayit/Freeverb_plugin
parenta53c68f02a359d234dee62dfa3bdd12bb17b13b5 (diff)
downloadtdeaccessibility-1b93777b6479886165554b763531d7bea5fe6c1f.tar.gz
tdeaccessibility-1b93777b6479886165554b763531d7bea5fe6c1f.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksayit/Freeverb_plugin')
-rw-r--r--ksayit/Freeverb_plugin/freeverbsetupimpl.cpp4
-rw-r--r--ksayit/Freeverb_plugin/freeverbsetupimpl.h2
-rw-r--r--ksayit/Freeverb_plugin/ksayitfreeverblib.cpp10
-rw-r--r--ksayit/Freeverb_plugin/ksayitfreeverblib.h6
4 files changed, 11 insertions, 11 deletions
diff --git a/ksayit/Freeverb_plugin/freeverbsetupimpl.cpp b/ksayit/Freeverb_plugin/freeverbsetupimpl.cpp
index f861a57..4fd00be 100644
--- a/ksayit/Freeverb_plugin/freeverbsetupimpl.cpp
+++ b/ksayit/Freeverb_plugin/freeverbsetupimpl.cpp
@@ -28,8 +28,8 @@ using namespace std;
// App specific includes
#include "freeverbsetupimpl.h"
-FreeverbSetupImpl::FreeverbSetupImpl(TQWidget *tqparent, const char *name, bool modal, KConfig *config )
- : Freeverb_Setup(tqparent,name,modal), m_config(config) {
+FreeverbSetupImpl::FreeverbSetupImpl(TQWidget *parent, const char *name, bool modal, KConfig *config )
+ : Freeverb_Setup(parent,name,modal), m_config(config) {
// initialize Widgets
Init();
diff --git a/ksayit/Freeverb_plugin/freeverbsetupimpl.h b/ksayit/Freeverb_plugin/freeverbsetupimpl.h
index b7c884f..b4f62be 100644
--- a/ksayit/Freeverb_plugin/freeverbsetupimpl.h
+++ b/ksayit/Freeverb_plugin/freeverbsetupimpl.h
@@ -35,7 +35,7 @@ class FreeverbSetupImpl : public Freeverb_Setup {
Q_OBJECT
TQ_OBJECT
public:
- FreeverbSetupImpl(TQWidget *tqparent=0, const char *name=0, bool modal=true, KConfig *config=0);
+ FreeverbSetupImpl(TQWidget *parent=0, const char *name=0, bool modal=true, KConfig *config=0);
~FreeverbSetupImpl();
public slots:
diff --git a/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp b/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp
index 64febd1..bb91885 100644
--- a/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp
+++ b/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp
@@ -41,19 +41,19 @@ KInstance *FreeverbPluginFactory::p_instance = 0L;
// Factory Constructor
-FreeverbPluginFactory::FreeverbPluginFactory(TQObject *tqparent, const char* name)
+FreeverbPluginFactory::FreeverbPluginFactory(TQObject *parent, const char* name)
{
p_instance = new KInstance("FreeverbPluginFactory");
}
-TQObject* FreeverbPluginFactory::createObject(TQObject *tqparent, const char* name,
+TQObject* FreeverbPluginFactory::createObject(TQObject *parent, const char* name,
const char*,
const TQStringList &)
{
kdDebug(100200) << "FreeverbPluginFactory::createObject()" << endl;
- TQObject* obj = new FreeverbPlugin( tqparent, name );
+ TQObject* obj = new FreeverbPlugin( parent, name );
emit objectCreated( obj );
return obj;
}
@@ -62,8 +62,8 @@ TQObject* FreeverbPluginFactory::createObject(TQObject *tqparent, const char* na
// Plugin Constructor
-FreeverbPlugin::FreeverbPlugin(TQObject *tqparent, const char* name) //, KApplication *Appl)
- : FXPlugin(tqparent, name) //, m_Appl(Appl)
+FreeverbPlugin::FreeverbPlugin(TQObject *parent, const char* name) //, KApplication *Appl)
+ : FXPlugin(parent, name) //, m_Appl(Appl)
{
m_config = new KSimpleConfig("ksayit_freeverbrc");
diff --git a/ksayit/Freeverb_plugin/ksayitfreeverblib.h b/ksayit/Freeverb_plugin/ksayitfreeverblib.h
index aac4408..a642eab 100644
--- a/ksayit/Freeverb_plugin/ksayitfreeverblib.h
+++ b/ksayit/Freeverb_plugin/ksayitfreeverblib.h
@@ -30,12 +30,12 @@ Q_OBJECT
TQ_OBJECT
public:
// Consturctor
- FreeverbPluginFactory(TQObject *tqparent=0, const char* name=0);
+ FreeverbPluginFactory(TQObject *parent=0, const char* name=0);
// Destructor
virtual ~FreeverbPluginFactory(){ delete p_instance; };
- TQObject* createObject(TQObject *tqparent=0, const char* name=0,
+ TQObject* createObject(TQObject *parent=0, const char* name=0,
const char* className=TQOBJECT_OBJECT_NAME_STRING,
const TQStringList &args=TQStringList());
@@ -54,7 +54,7 @@ Q_OBJECT
TQ_OBJECT
public:
// Constructor
- FreeverbPlugin(TQObject *tqparent=0, const char* name=0); //, KApplication *Appl=0);
+ FreeverbPlugin(TQObject *parent=0, const char* name=0); //, KApplication *Appl=0);
// Destructor
~FreeverbPlugin();