summaryrefslogtreecommitdiffstats
path: root/kjsembed/plugins/customqobject_plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/plugins/customqobject_plugin.cpp')
-rw-r--r--kjsembed/plugins/customqobject_plugin.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kjsembed/plugins/customqobject_plugin.cpp b/kjsembed/plugins/customqobject_plugin.cpp
index 8538dffc..74d39bc3 100644
--- a/kjsembed/plugins/customqobject_plugin.cpp
+++ b/kjsembed/plugins/customqobject_plugin.cpp
@@ -32,7 +32,7 @@
namespace KJSEmbed {
namespace Bindings {
-MyCustomTQObjectLoader::MyCustomTQObjectLoader( TTQObject *parent, const char *name, const TTQStringList &args ) :
+MyCustomTQObjectLoader::MyCustomTQObjectLoader( TQObject *parent, const char *name, const TQStringList &args ) :
JSBindingPlugin(parent, name, args)
{
}
@@ -41,7 +41,7 @@ KJS::Object MyCustomTQObjectLoader::createBinding(KJSEmbedPart *jspart, KJS::Exe
{
kdDebug() << "Loading a custom object" << endl;
- TTQObject *parent = 0L;
+ TQObject *parent = 0L;
JSObjectProxy *proxy = JSProxy::toObjectProxy( args[0].imp() );
if ( proxy )
parent = proxy->object();
@@ -54,8 +54,8 @@ KJS::Object MyCustomTQObjectLoader::createBinding(KJSEmbedPart *jspart, KJS::Exe
return proxyObj;
}
-MyCustomTQObjectImp::MyCustomTQObjectImp(TTQObject *parent, const char *name )
- : TTQObject(parent, name)
+MyCustomTQObjectImp::MyCustomTQObjectImp(TQObject *parent, const char *name )
+ : TQObject(parent, name)
{
kdDebug() << "New MyCustomTQObjectImp " << endl;
}
@@ -74,12 +74,12 @@ void MyCustomTQObjectImp::setMode( Mode md)
kdDebug() << "setMode() " << endl;
m_mode = md;
}
-TTQString MyCustomTQObjectImp::thing() const
+TQString MyCustomTQObjectImp::thing() const
{
kdDebug() << "thing()" << endl;
return m_thing;
}
-void MyCustomTQObjectImp::setThing( const TTQString &t)
+void MyCustomTQObjectImp::setThing( const TQString &t)
{
kdDebug() << "setThing() " << t << endl;
m_thing = t;