Code

Corrected initialization order.
[inkscape.git] / src / dom / lsimpl.cpp
index 8848a42e4250e7aceab6af9a17b1a6a71486c99f..b3b3f0b20cb59fa34635c7fadc38d70f546d44b2 100644 (file)
@@ -10,7 +10,7 @@
  * Authors:
  *   Bob Jamison
  *
- * Copyright (C) 2005 Bob Jamison
+ * Copyright (C) 2005-2007 Bob Jamison
  *
  *  This library is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU Lesser General Public
@@ -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;
@@ -272,7 +272,7 @@ void LSSerializerImpl::spaces()
 /**
  *
  */
-void LSSerializerImpl::po(char *fmt, ...)
+void LSSerializerImpl::po(char const *fmt, ...)
 {
     char str[257];
     va_list args;