summaryrefslogtreecommitdiffstats
path: root/ksvg/dom
diff options
context:
space:
mode:
Diffstat (limited to 'ksvg/dom')
-rw-r--r--ksvg/dom/SVGCircleElement.h2
-rw-r--r--ksvg/dom/SVGEllipseElement.h2
-rw-r--r--ksvg/dom/SVGLength.cc2
-rw-r--r--ksvg/dom/SVGLineElement.h2
-rw-r--r--ksvg/dom/SVGLocatable.h2
-rw-r--r--ksvg/dom/SVGPolygonElement.h4
-rw-r--r--ksvg/dom/SVGPolylineElement.h4
-rw-r--r--ksvg/dom/SVGRectElement.h6
-rw-r--r--ksvg/dom/SVGSVGElement.h2
-rw-r--r--ksvg/dom/SVGTextElement.h2
10 files changed, 14 insertions, 14 deletions
diff --git a/ksvg/dom/SVGCircleElement.h b/ksvg/dom/SVGCircleElement.h
index d621ce8b..65406a1c 100644
--- a/ksvg/dom/SVGCircleElement.h
+++ b/ksvg/dom/SVGCircleElement.h
@@ -51,7 +51,7 @@ class SVGAnimatedLength;
* point and radius.
*
* For more info look here : <a href =
- * "http://www.w3.org/TR/SVG/tqshapes.html#CircleElement">9.3 The
+ * "http://www.w3.org/TR/SVG/shapes.html#CircleElement">9.3 The
* 'circle' element</a>.
*/
class SVGCircleElement : public SVGElement,
diff --git a/ksvg/dom/SVGEllipseElement.h b/ksvg/dom/SVGEllipseElement.h
index 07d86504..78399779 100644
--- a/ksvg/dom/SVGEllipseElement.h
+++ b/ksvg/dom/SVGEllipseElement.h
@@ -52,7 +52,7 @@ class SVGEllipseElementImpl;
* center point and two radii.
*
* For more info look here : <a href =
- * "http://www.w3.org/TR/SVG/tqshapes.html#EllipseElement">9.4 The
+ * "http://www.w3.org/TR/SVG/shapes.html#EllipseElement">9.4 The
* 'ellipse' element</a>.
*/
class SVGEllipseElement : public SVGElement,
diff --git a/ksvg/dom/SVGLength.cc b/ksvg/dom/SVGLength.cc
index 6ae3f55f..bb2db73f 100644
--- a/ksvg/dom/SVGLength.cc
+++ b/ksvg/dom/SVGLength.cc
@@ -77,7 +77,7 @@ void SVGLength::setValue(float value)
{
impl->setValue(value);
- // Automatic updating of the tqshape if any value is changed, imagine:
+ // Automatic updating of the shape if any value is changed, imagine:
// SVGCircleElement c; [...] c.r().baseVal().setValue(150);
if(impl->context() && dynamic_cast<SVGShapeImpl *>(impl->context()))
dynamic_cast<SVGShapeImpl *>(impl->context())->update(UPDATE_TRANSFORM, 0, 0);
diff --git a/ksvg/dom/SVGLineElement.h b/ksvg/dom/SVGLineElement.h
index 0bd2e58f..b08a78ba 100644
--- a/ksvg/dom/SVGLineElement.h
+++ b/ksvg/dom/SVGLineElement.h
@@ -51,7 +51,7 @@ class SVGLineElementImpl;
* one point and ends at another.
*
* For more info look here : <a href =
- * "http://www.w3.org/TR/SVG/tqshapes.html#CircleElement">9.5 The
+ * "http://www.w3.org/TR/SVG/shapes.html#CircleElement">9.5 The
* 'line' element</a>.
*/
class SVGLineElement : public SVGElement,
diff --git a/ksvg/dom/SVGLocatable.h b/ksvg/dom/SVGLocatable.h
index f078b778..ecb93adc 100644
--- a/ksvg/dom/SVGLocatable.h
+++ b/ksvg/dom/SVGLocatable.h
@@ -66,7 +66,7 @@ public:
/**
* Returns the tight bounding box in current user space (i.e., after application of
- * the <code>transform</code> attribute, if any) on the tqgeometry of all contained graphics
+ * the <code>transform</code> attribute, if any) on the geometry of all contained graphics
* elements, exclusive of stroke-width and filter effects).
*
* @return An SVGRect object that defines the bounding box.
diff --git a/ksvg/dom/SVGPolygonElement.h b/ksvg/dom/SVGPolygonElement.h
index 7347c53f..526e9815 100644
--- a/ksvg/dom/SVGPolygonElement.h
+++ b/ksvg/dom/SVGPolygonElement.h
@@ -48,11 +48,11 @@ class SVGPointList;
class SVGPolygonElementImpl;
/**
- * The <code>polygon</code> element defines a closed tqshape consisting
+ * The <code>polygon</code> element defines a closed shape consisting
* of connected straight line segments.
*
* For more info look here : <a href =
- * "http://www.w3.org/TR/SVG/tqshapes.html#PolylineElement">9.7 The
+ * "http://www.w3.org/TR/SVG/shapes.html#PolylineElement">9.7 The
* 'polygon' element</a>.
*/
class SVGPolygonElement : public SVGElement,
diff --git a/ksvg/dom/SVGPolylineElement.h b/ksvg/dom/SVGPolylineElement.h
index 78afaf2f..35e948f7 100644
--- a/ksvg/dom/SVGPolylineElement.h
+++ b/ksvg/dom/SVGPolylineElement.h
@@ -47,10 +47,10 @@ namespace KSVG
/**
* The <code>polyline</code> element defines a set of connected
* straight line segments. Typically, <code>polyline</code> elements
- * define open tqshapes.
+ * define open shapes.
*
* For more info look here : <a href =
- * "http://www.w3.org/TR/SVG/tqshapes.html#PolylineElement">9.6 The
+ * "http://www.w3.org/TR/SVG/shapes.html#PolylineElement">9.6 The
* 'polyline' element</a>.
*/
class SVGPointList;
diff --git a/ksvg/dom/SVGRectElement.h b/ksvg/dom/SVGRectElement.h
index 2c33b045..2a77420d 100644
--- a/ksvg/dom/SVGRectElement.h
+++ b/ksvg/dom/SVGRectElement.h
@@ -55,7 +55,7 @@ class SVGRectElementImpl;
* for attributes <code> x </code> and <code> y</code>.
*
* For more info look here : <a href =
- * "http://www.w3.org/TR/SVG/tqshapes.html#RectElement"> 9.2 The
+ * "http://www.w3.org/TR/SVG/shapes.html#RectElement"> 9.2 The
* 'rect' element</a>.
*/
class SVGRectElement : public SVGElement,
@@ -130,7 +130,7 @@ public:
* "http://www.w3.org/TR/SVG/implnote.html#ErrorProcessing"> Error
* processing</a>).
*
- * See <a href="http://www.w3.org/TR/SVG/tqshapes.html#RectElement">
+ * See <a href="http://www.w3.org/TR/SVG/shapes.html#RectElement">
* 9.2 The 'rect' element </a> for info about what happens if the
* attribute is not specified.
*
@@ -148,7 +148,7 @@ public:
* "http://www.w3.org/TR/SVG/implnote.html#ErrorProcessing">Error
* processing</a>).
*
- * See <a href="http://www.w3.org/TR/SVG/tqshapes.html#RectElement">
+ * See <a href="http://www.w3.org/TR/SVG/shapes.html#RectElement">
* 9.2 The 'rect' element </a> for info about what happens if the
* attribute is not specified.
*
diff --git a/ksvg/dom/SVGSVGElement.h b/ksvg/dom/SVGSVGElement.h
index cdb0ef74..59621e2e 100644
--- a/ksvg/dom/SVGSVGElement.h
+++ b/ksvg/dom/SVGSVGElement.h
@@ -190,7 +190,7 @@ public:
* this SVG document is embedded as part of another document (e.g., via the
* HTML 'object' element), then the position and size are unitless values in
* the coordinate system of the parent document. (If the parent uses CSS or
- * XSL tqlayout, then unitless values represent pixel units for the current CSS
+ * XSL layout, then unitless values represent pixel units for the current CSS
* or XSL viewport, as described in the CSS2 specification.) If the parent
* element does not have a coordinate system, then the user agent should
* provide reasonable default values for this attribute.
diff --git a/ksvg/dom/SVGTextElement.h b/ksvg/dom/SVGTextElement.h
index e4fb8a9f..0bf459fe 100644
--- a/ksvg/dom/SVGTextElement.h
+++ b/ksvg/dom/SVGTextElement.h
@@ -58,7 +58,7 @@ class SVGTextElementImpl;
* the characters. Since <code>text</code> elements are rendered using the
* same rendering methods as other graphics elements, all of the same
* coordinate system transformations, painting, clipping and masking
- * features that apply to tqshapes such as paths and rectangles also
+ * features that apply to shapes such as paths and rectangles also
* apply to <code>text</code> elements.
*
* It is possible to apply a gradient, pattern, clipping path, mask or