summaryrefslogtreecommitdiffstats
path: root/ksvg/impl
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:19 -0600
commit00b4f54142276b0e2272ca56e48558551ab7b2b0 (patch)
tree1d1054b59fc2e76d0c2bae00126bdf65d9318865 /ksvg/impl
parentc7549e238d15850306158ae153fc99126c84ab9d (diff)
downloadtdegraphics-00b4f54142276b0e2272ca56e48558551ab7b2b0.tar.gz
tdegraphics-00b4f54142276b0e2272ca56e48558551ab7b2b0.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'ksvg/impl')
-rw-r--r--ksvg/impl/SVGElementImpl.cc2
-rw-r--r--ksvg/impl/SVGElementImpl.h2
-rw-r--r--ksvg/impl/SVGEventImpl.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/ksvg/impl/SVGElementImpl.cc b/ksvg/impl/SVGElementImpl.cc
index 940790f2..fe013f0a 100644
--- a/ksvg/impl/SVGElementImpl.cc
+++ b/ksvg/impl/SVGElementImpl.cc
@@ -325,7 +325,7 @@ TQDict<DOM::DOMString> &SVGElementImpl::attributes()
return m_attributes;
}
-// khtml overrides
+// tdehtml overrides
void SVGElementImpl::setAttribute(const DOM::DOMString &name, const DOM::DOMString &value)
{
m_attributes.replace(name.string(), new DOM::DOMString(value));
diff --git a/ksvg/impl/SVGElementImpl.h b/ksvg/impl/SVGElementImpl.h
index a12098ab..011b8b4b 100644
--- a/ksvg/impl/SVGElementImpl.h
+++ b/ksvg/impl/SVGElementImpl.h
@@ -62,7 +62,7 @@ public:
virtual ~SVGElementImpl();
// Attribute setting
- // "Override" khtml's functions with ours
+ // "Override" tdehtml's functions with ours
void setAttribute(const DOM::DOMString &name, const DOM::DOMString &value);
void setAttributeInternal(const DOM::DOMString &name, const DOM::DOMString &value);
DOM::DOMString getAttribute(const DOM::DOMString &name) const;
diff --git a/ksvg/impl/SVGEventImpl.cc b/ksvg/impl/SVGEventImpl.cc
index e1252af8..b5b79fc9 100644
--- a/ksvg/impl/SVGEventImpl.cc
+++ b/ksvg/impl/SVGEventImpl.cc
@@ -346,7 +346,7 @@ SVGKeyEventImpl::SVGKeyEventImpl(TQKeyEvent *key, DOM::AbstractView &view, SVGEv
qKeyEvent = new TQKeyEvent(key->type(), key->key(), key->ascii(), key->state(), key->text(), key->isAutoRepeat(), key->count());
// Events are supposed to be accepted by default in TQt!
- // This line made TQLineEdit's keyevents be ignored, so they were sent to the khtmlview
+ // This line made TQLineEdit's keyevents be ignored, so they were sent to the tdehtmlview
// (and e.g. space would make it scroll down)
//qKeyEvent->ignore();