summaryrefslogtreecommitdiffstats
path: root/src/dom/lsimpl.cpp
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/lsimpl.cpp
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/lsimpl.cpp')
-rw-r--r--src/dom/lsimpl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dom/lsimpl.cpp b/src/dom/lsimpl.cpp
index 40b464814..b3b3f0b20 100644
--- a/src/dom/lsimpl.cpp
+++ b/src/dom/lsimpl.cpp
@@ -128,7 +128,7 @@ DocumentPtr LSParserImpl::parse(const LSInput &input)
/**
*
*/
-DocumentPtr LSParserImpl::parseURI(const DOMString &uri)
+DocumentPtr LSParserImpl::parseURI(const DOMString &/*uri*/)
throw(dom::DOMException, LSException)
{
return NULL;
@@ -137,9 +137,9 @@ DocumentPtr LSParserImpl::parseURI(const DOMString &uri)
/**
*
*/
-NodePtr LSParserImpl::parseWithContext(const LSInput &input,
- const NodePtr contextArg,
- unsigned short action)
+NodePtr LSParserImpl::parseWithContext(const LSInput &/*input*/,
+ const NodePtr /*contextArg*/,
+ unsigned short /*action*/)
throw(dom::DOMException, LSException)
{
return NULL;