summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5790f36)
raw | patch | inline | side by side (parent: 5790f36)
author | ishmal <ishmal@users.sourceforge.net> | |
Tue, 13 May 2008 17:33:50 +0000 (17:33 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Tue, 13 May 2008 17:33:50 +0000 (17:33 +0000) |
src/dom/domimpl.cpp | patch | blob | history |
diff --git a/src/dom/domimpl.cpp b/src/dom/domimpl.cpp
index e932cfd8089d7893f33a23266542c188e0906280..10daa1582a9c9b4d80fc15e80c0194329ff65b0d 100644 (file)
--- a/src/dom/domimpl.cpp
+++ b/src/dom/domimpl.cpp
* Authors:
* Bob Jamison
*
- * Copyright (C) 2005 Bob Jamison
+ * Copyright (C) 2005-2008 Bob Jamison
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
*
*/
AttrImpl::AttrImpl(DocumentImplPtr owner,
- const DOMString &theNamespaceURI,
+ const DOMString &/*theNamespaceURI*/,
const DOMString &theQualifiedName)
: NodeImpl()
{
/**
*
*/
-void ElementImpl::setIdAttribute(const DOMString &name,
- bool isId) throw (DOMException)
+void ElementImpl::setIdAttribute(const DOMString &/*name*/,
+ bool /*isId*/) throw (DOMException)
{
//fixme
}
/**
*
*/
-void ElementImpl::setIdAttributeNS(const DOMString &namespaceURI,
- const DOMString &localName,
- bool isId) throw (DOMException)
+void ElementImpl::setIdAttributeNS(const DOMString &/*namespaceURI*/,
+ const DOMString &/*localName*/,
+ bool /*isId*/) throw (DOMException)
{
//fixme
}
/**
*
*/
-void ElementImpl::setIdAttributeNode(const AttrPtr idAttr,
- bool isId) throw (DOMException)
+void ElementImpl::setIdAttributeNode(const AttrPtr /*idAttr*/,
+ bool /*isId*/) throw (DOMException)
{
//fixme
}
*
*/
ElementImpl::ElementImpl(DocumentImplPtr owner,
- const DOMString &theNamespaceURI,
+ const DOMString &/*theNamespaceURI*/,
const DOMString &qualifiedName) :
NodeImpl()
{
/**
*
*/
-TextPtr TextImpl::splitText(unsigned long offset)
+TextPtr TextImpl::splitText(unsigned long /*offset*/)
throw(DOMException)
{
return NULL;
/**
*
*/
-TextPtr TextImpl::replaceWholeText(const DOMString &content)
+TextPtr TextImpl::replaceWholeText(const DOMString &/*content*/)
throw(DOMException)
{
return NULL;
/**
*
*/
-void UserDataHandlerImpl::handle(unsigned short operation,
- const DOMString &key,
- const DOMUserData *data,
- const NodePtr src,
- const NodePtr dst)
+void UserDataHandlerImpl::handle(unsigned short /*operation*/,
+ const DOMString &/*key*/,
+ const DOMUserData */*data*/,
+ const NodePtr /*src*/,
+ const NodePtr /*dst*/)
{
//do nothing. do we need anything here?
}
/**
*
*/
-void DOMConfigurationImpl::setParameter(const DOMString &name,
- const DOMUserData *value) throw (DOMException)
+void DOMConfigurationImpl::setParameter(const DOMString &/*name*/,
+ const DOMUserData */*value*/) throw (DOMException)
{
}
/**
*
*/
-DOMUserData *DOMConfigurationImpl::getParameter(const DOMString &name)
+DOMUserData *DOMConfigurationImpl::getParameter(const DOMString &/*name*/)
throw (DOMException)
{
return NULL;
/**
*
*/
-bool DOMConfigurationImpl::canSetParameter(const DOMString &name,
- const DOMUserData *data)
+bool DOMConfigurationImpl::canSetParameter(const DOMString &/*name*/,
+ const DOMUserData */*data*/)
{
return false;
}
/**
*
*/
-void ProcessingInstructionImpl::setData(const DOMString& val) throw(DOMException)
+void ProcessingInstructionImpl::setData(const DOMString& /*val*/) throw(DOMException)
{
//do something here
}
/**
*
*/
-NodePtr DocumentImpl::importNode(const NodePtr importedNode,
- bool deep)
+NodePtr DocumentImpl::importNode(const NodePtr /*importedNode*/,
+ bool /*deep*/)
throw(DOMException)
{
return NULL;
/**
*
*/
-void DocumentImpl::setDocumentURI(const DOMString &uri)
+void DocumentImpl::setDocumentURI(const DOMString &/*uri*/)
{
//documentURI = stringCache(uri);
}
*
*/
NodePtr DocumentImpl::renameNode(const NodePtr node,
- const DOMString &namespaceURI,
+ const DOMString &/*namespaceURI*/,
const DOMString &qualifiedName)
throw (DOMException)
{
*
*/
DocumentImpl::DocumentImpl(const DOMImplementation *domImpl,
- const DOMString &theNamespaceURI,
+ const DOMString &/*theNamespaceURI*/,
const DOMString &theQualifiedName,
const DocumentTypePtr theDoctype) : NodeImpl()
{