diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-03-08 21:10:02 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-03-08 21:10:02 +0000 |
| commit | 432a82e4b501fa7c56c8469c3df4afbfeea080fc (patch) | |
| tree | f04d81f4fce5af0021c8e6900594e88db6b9f970 /src/dom/svg | |
| parent | Fixed bug found by JonCruz. Using an unsigned int in findLast() caused an in... (diff) | |
| download | inkscape-432a82e4b501fa7c56c8469c3df4afbfeea080fc.tar.gz inkscape-432a82e4b501fa7c56c8469c3df4afbfeea080fc.zip | |
Warning cleanup
(bzr r4995)
Diffstat (limited to 'src/dom/svg')
| -rw-r--r-- | src/dom/svg/svgparser.h | 4 | ||||
| -rw-r--r-- | src/dom/svg/svgtypes.h | 48 |
2 files changed, 26 insertions, 26 deletions
diff --git a/src/dom/svg/svgparser.h b/src/dom/svg/svgparser.h index bd230c4e6..cb3ac15d4 100644 --- a/src/dom/svg/svgparser.h +++ b/src/dom/svg/svgparser.h @@ -57,7 +57,7 @@ public: /** * */ - SvgParser(const SvgParser &other) + SvgParser(const SvgParser &/*other*/) { } @@ -116,7 +116,7 @@ private: * */ bool parseElement(SVGElementImplPtr destElem, - ElementImplPtr sourceElem); + ElementImplPtr sourceElem); /** diff --git a/src/dom/svg/svgtypes.h b/src/dom/svg/svgtypes.h index 59fe38ab5..36bb1fcdf 100644 --- a/src/dom/svg/svgtypes.h +++ b/src/dom/svg/svgtypes.h @@ -1799,7 +1799,7 @@ public: /** * */ - virtual void setValueInSpecifiedUnits( double val ) + virtual void setValueInSpecifiedUnits( double /*val*/ ) throw (DOMException) { //fill this in @@ -1820,7 +1820,7 @@ public: /** * */ - virtual void setValueAsString( const DOMString& val ) + virtual void setValueAsString( const DOMString& /*val*/ ) throw (DOMException) { } @@ -1829,14 +1829,14 @@ public: /** * */ - virtual void newValueSpecifiedUnits ( unsigned short unitType, double val ) + virtual void newValueSpecifiedUnits ( unsigned short /*unitType*/, double /*val*/ ) { } /** * */ - virtual void convertToSpecifiedUnits ( unsigned short unitType ) + virtual void convertToSpecifiedUnits ( unsigned short /*unitType*/ ) { } @@ -2221,7 +2221,7 @@ public: /** * */ - virtual void setValueInSpecifiedUnits(double val) + virtual void setValueInSpecifiedUnits(double /*val*/) throw (DOMException) { //do conversion @@ -2242,7 +2242,7 @@ public: /** * */ - virtual void setValueAsString(const DOMString &val) + virtual void setValueAsString(const DOMString &/*val*/) throw (DOMException) { //convert here @@ -2252,8 +2252,8 @@ public: /** * */ - virtual void newValueSpecifiedUnits (unsigned short unitType, - double valueInSpecifiedUnits ) + virtual void newValueSpecifiedUnits (unsigned short /*unitType*/, + double /*valueInSpecifiedUnits*/ ) { //convert here } @@ -2261,7 +2261,7 @@ public: /** * */ - virtual void convertToSpecifiedUnits (unsigned short unitType ) + virtual void convertToSpecifiedUnits (unsigned short /*unitType*/ ) { //convert here } @@ -2498,7 +2498,7 @@ public: /** * */ - virtual void setRGBColor (const DOMString& rgbColor ) + virtual void setRGBColor (const DOMString& /*rgbColor*/ ) throw( SVGException ) { } @@ -2506,8 +2506,8 @@ public: /** * */ - virtual void setRGBColorICCColor (const DOMString& rgbColor, - const DOMString& iccColor ) + virtual void setRGBColorICCColor (const DOMString& /*rgbColor*/, + const DOMString& /*iccColor*/ ) throw( SVGException ) { } @@ -2515,9 +2515,9 @@ public: /** * */ - virtual void setColor (unsigned short colorType, - const DOMString& rgbColor, - const DOMString& iccColor ) + virtual void setColor (unsigned short /*colorType*/, + const DOMString& /*rgbColor*/, + const DOMString& /*iccColor*/ ) throw( SVGException ) { } @@ -2781,7 +2781,7 @@ public: /** * */ - virtual SVGPoint matrixTransform(const SVGMatrix &matrix) + virtual SVGPoint matrixTransform(const SVGMatrix &/*matrix*/) { SVGPoint point; return point; @@ -3041,7 +3041,7 @@ public: /** * */ - virtual css::CSSValue getPresentationAttribute (const DOMString& name ) + virtual css::CSSValue getPresentationAttribute (const DOMString& /*name*/ ) { css::CSSValue val; //perform a lookup @@ -3136,7 +3136,7 @@ public: /** * */ - virtual SVGMatrix getTransformToElement (const SVGElement &element) + virtual SVGMatrix getTransformToElement (const SVGElement &/*element*/) throw( SVGException ) { SVGMatrix result; @@ -3158,7 +3158,7 @@ public: /** * */ - SVGLocatable(const SVGLocatable &other) + SVGLocatable(const SVGLocatable &/*other*/) { } @@ -3274,7 +3274,7 @@ public: /** * */ - virtual bool hasExtension (const DOMString& extension ) + virtual bool hasExtension (const DOMString& /*extension*/ ) { return false; } @@ -6209,7 +6209,7 @@ public: /** * */ - SVGAnimatedPathData(const SVGAnimatedPathData &other) + SVGAnimatedPathData(const SVGAnimatedPathData &/*other*/) { } @@ -6337,8 +6337,8 @@ public: */ virtual void setPaint (unsigned short paintTypeArg, const DOMString& uriArg, - const DOMString& rgbColor, - const DOMString& iccColor ) + const DOMString& /*rgbColor*/, + const DOMString& /*iccColor*/ ) throw( SVGException ) { paintType = paintTypeArg; @@ -6829,7 +6829,7 @@ public: * SVGElementInstanceList SVGElementInstance::getChildNodes() * */ - static SVGElementInstanceList getChildNodes(const SVGElementInstance &instance) + static SVGElementInstanceList getChildNodes(const SVGElementInstance &/*instance*/) { SVGElementInstanceList list; return list; |
