diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /khtml/css/css_stylesheetimpl.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/css/css_stylesheetimpl.h')
-rw-r--r-- | khtml/css/css_stylesheetimpl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/khtml/css/css_stylesheetimpl.h b/khtml/css/css_stylesheetimpl.h index 80f2b4ed8..e7a551947 100644 --- a/khtml/css/css_stylesheetimpl.h +++ b/khtml/css/css_stylesheetimpl.h @@ -101,8 +101,8 @@ public: void deleteRule ( unsigned long index, int &exceptioncode ); void addNamespace(CSSParser* p, const DOM::DOMString& prefix, const DOM::DOMString& uri); - void determineNamespace(TQ_UINT32& id, const DOM::DOMString& prefix); - TQ_UINT32 defaultNamespace() { return m_defaultNamespace; }; + void determineNamespace(Q_UINT32& id, const DOM::DOMString& prefix); + Q_UINT32 defaultNamespace() { return m_defaultNamespace; }; void setCharset(const DOMString &charset) { m_charset = charset; } const DOMString& charset() const { return m_charset; } @@ -123,7 +123,7 @@ public: protected: DocumentImpl *m_doc; bool m_implicit; - TQ_UINT32 m_defaultNamespace; + Q_UINT32 m_defaultNamespace; CSSNamespace* m_namespaces; DOMString m_charset; }; @@ -172,14 +172,14 @@ public: void setMediaText(const DOM::DOMString &value); /** - * Check if the list tqcontains either the requested medium, or the + * Check if the list contains either the requested medium, or the * catch-all "all" media type. Returns true when found, false otherwise. * Since not specifying media types should be treated as "all" according * to DOM specs, an empty list always returns true. * * _NOT_ part of the DOM! */ - bool tqcontains( const DOM::DOMString &medium ) const; + bool contains( const DOM::DOMString &medium ) const; protected: TQValueList<DOM::DOMString> m_lstMedia; |