From bce8199ddac4feecdee9c094fb8f75863cfa9652 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: Remove the tq in front of these incorrectly TQt4-converted methods/data members: tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksvg/ecma/ksvg_lookup.h | 10 +++++----- ksvg/ecma/ksvg_window.cpp | 4 ++-- ksvg/ecma/ksvg_window.h | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'ksvg/ecma') diff --git a/ksvg/ecma/ksvg_lookup.h b/ksvg/ecma/ksvg_lookup.h index 659ce8c7..ef22000a 100644 --- a/ksvg/ecma/ksvg_lookup.h +++ b/ksvg/ecma/ksvg_lookup.h @@ -31,7 +31,7 @@ #define KSVG_GET_COMMON \ public: \ \ - /* The standard hasProperty call, auto-generated. Looks in hashtable, forwards to tqparents. */ \ + /* The standard hasProperty call, auto-generated. Looks in hashtable, forwards to parents. */ \ bool hasProperty(KJS::ExecState *exec, const KJS::Identifier &propertyName) const; \ \ /* get() method, called by KSVGBridge::get */ \ @@ -80,7 +80,7 @@ public: \ /* put() method, called by KSVGBridge::put */ \ bool put(KJS::ExecState *exec, const KJS::Identifier &propertyName, const KJS::Value &value, int attr); \ \ - /* Called by lookupPut. Auto-generated. Looks in hashtable, forwards to tqparents. */ \ + /* Called by lookupPut. Auto-generated. Looks in hashtable, forwards to parents. */ \ bool putInParents(KJS::ExecState *exec, const KJS::Identifier &propertyName, const KJS::Value &value, int attr); // For classes which inherit a read-write class, but have no readwrite property themselves @@ -150,7 +150,7 @@ namespace KSVG { const KJS::HashEntry *entry = KJS::Lookup::findEntry(table, propertyName); - if(!entry) // not found, forward to tqparents + if(!entry) // not found, forward to parents return thisObj->getInParents(exec, propertyName, bridge); if(entry->attr & KJS::Function) @@ -174,7 +174,7 @@ namespace KSVG { const KJS::HashEntry *entry = KJS::Lookup::findEntry(table, propertyName); - if(!entry) // not found, forward to tqparents + if(!entry) // not found, forward to parents return thisObj->getInParents(exec, propertyName, bridge); if(entry->attr & KJS::Function) @@ -199,7 +199,7 @@ namespace KSVG { const KJS::HashEntry *entry = KJS::Lookup::findEntry(table, propertyName); - if(!entry) // not found, forward to tqparents + if(!entry) // not found, forward to parents return thisObj->putInParents(exec, propertyName, value, attr); else if(entry->attr & KJS::Function) // Function: put as override property return false; diff --git a/ksvg/ecma/ksvg_window.cpp b/ksvg/ecma/ksvg_window.cpp index 3a6c7469..85c05074 100644 --- a/ksvg/ecma/ksvg_window.cpp +++ b/ksvg/ecma/ksvg_window.cpp @@ -496,10 +496,10 @@ WindowQObject::WindowQObject(Window *w) : tqparent(w) WindowQObject::~WindowQObject() { - tqparentDestroyed(); // reuse same code + parentDestroyed(); // reuse same code } -void WindowQObject::tqparentDestroyed() +void WindowQObject::parentDestroyed() { killTimers(); diff --git a/ksvg/ecma/ksvg_window.h b/ksvg/ecma/ksvg_window.h index 035dbb59..091448a8 100644 --- a/ksvg/ecma/ksvg_window.h +++ b/ksvg/ecma/ksvg_window.h @@ -110,7 +110,7 @@ public: public slots: void timeoutClose(); protected slots: - void tqparentDestroyed(); + void parentDestroyed(); protected: void timerEvent(TQTimerEvent *e); private: -- cgit v1.2.1