summaryrefslogtreecommitdiffstats
path: root/src/dom/smil.h
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-03-08 21:10:02 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-03-08 21:10:02 +0000
commit432a82e4b501fa7c56c8469c3df4afbfeea080fc (patch)
treef04d81f4fce5af0021c8e6900594e88db6b9f970 /src/dom/smil.h
parentFixed bug found by JonCruz. Using an unsigned int in findLast() caused an in... (diff)
downloadinkscape-432a82e4b501fa7c56c8469c3df4afbfeea080fc.tar.gz
inkscape-432a82e4b501fa7c56c8469c3df4afbfeea080fc.zip
Warning cleanup
(bzr r4995)
Diffstat (limited to 'src/dom/smil.h')
-rw-r--r--src/dom/smil.h16
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*/)
{
}