diff options
Diffstat (limited to 'ksvg/ecma/ksvg_window.h')
-rw-r--r-- | ksvg/ecma/ksvg_window.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ksvg/ecma/ksvg_window.h b/ksvg/ecma/ksvg_window.h index 6f1e511a..035dbb59 100644 --- a/ksvg/ecma/ksvg_window.h +++ b/ksvg/ecma/ksvg_window.h @@ -25,14 +25,14 @@ namespace KSVG { class SVGDocumentImpl; -class WindowTQObject; +class WindowQObject; // This is currently a fork of khtml's Window object, simplified. // However in the long run it could become a base class for it. // Author: David Faure <[email protected]> class Window : public KJS::ObjectImp { friend class WindowFunc; - friend class WindowTQObject; + friend class WindowQObject; friend class ScheduledAction; public: Window(KSVG::SVGDocumentImpl *p); @@ -81,7 +81,7 @@ public: static const struct KJS::HashTable s_hashTable; private: - WindowTQObject *winq; + WindowQObject *winq; TQGuardedPtr<KSVG::SVGDocumentImpl> m_doc; }; @@ -98,12 +98,12 @@ public: bool singleShot; }; -class WindowTQObject : public TQObject { +class WindowQObject : public TQObject { Q_OBJECT TQ_OBJECT public: - WindowTQObject(Window *w); - ~WindowTQObject(); + WindowQObject(Window *w); + ~WindowQObject(); int installTimeout(const KJS::UString &handler, int t, bool singleShot); int installTimeout(const KJS::Value &func, KJS::List args, int t, bool singleShot); void clearTimeout(int timerId, bool delAction = true); |