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/smil.h | |
| 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/smil.h')
| -rw-r--r-- | src/dom/smil.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/dom/smil.h b/src/dom/smil.h index 0be0afe54..cbabe2525 100644 --- a/src/dom/smil.h +++ b/src/dom/smil.h @@ -607,7 +607,7 @@ public: /** * */ - virtual void seekElement(double &seekTo) + virtual void seekElement(double &/*seekTo*/) { } @@ -786,7 +786,7 @@ public: /** * */ - virtual NodeList getActiveChildrenAt(double instant) + virtual NodeList getActiveChildrenAt(double /*instant*/) { NodeList list; return list; @@ -1091,7 +1091,7 @@ public: /** * */ - virtual bool beginElementAt(double offset) throw(dom::DOMException) + virtual bool beginElementAt(double /*offset*/) throw(dom::DOMException) { return true; } @@ -1107,7 +1107,7 @@ public: /** * */ - virtual bool endElementAt(double offset) throw(dom::DOMException) + virtual bool endElementAt(double /*offset*/) throw(dom::DOMException) { return true; } @@ -1124,7 +1124,7 @@ public: /** * */ - ElementTimeControl(const ElementTimeControl &other) + ElementTimeControl(const ElementTimeControl &/*other*/) { } @@ -1386,9 +1386,9 @@ public: /** * */ - virtual void initTimeEvent(const DOMString &typeArg, - const views::View *viewArg, - long detailArg) + virtual void initTimeEvent(const DOMString &/*typeArg*/, + const views::View */*viewArg*/, + long /*detailArg*/) { } |
