summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e9c0d7e)
raw | patch | inline | side by side (parent: e9c0d7e)
author | joncruz <joncruz@users.sourceforge.net> | |
Tue, 29 Apr 2008 06:08:13 +0000 (06:08 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Tue, 29 Apr 2008 06:08:13 +0000 (06:08 +0000) |
src/dom/svgimpl.cpp | patch | blob | history |
diff --git a/src/dom/svgimpl.cpp b/src/dom/svgimpl.cpp
index 03d42e5159ae3f8823a8f3ad1c4df0059ec14716..9343c311d9a6a6329194c5cc918a304e96eae666 100644 (file)
--- a/src/dom/svgimpl.cpp
+++ b/src/dom/svgimpl.cpp
/**
*
*/
-unsigned long SVGSVGElementImpl::suspendRedraw(unsigned long max_wait_milliseconds )
+unsigned long SVGSVGElementImpl::suspendRedraw(unsigned long /*max_wait_milliseconds*/ )
{
return 0L;
}
@@ -114,7 +114,7 @@ unsigned long SVGSVGElementImpl::suspendRedraw(unsigned long max_wait_millisecon
/**
*
*/
-void SVGSVGElementImpl::unsuspendRedraw(unsigned long suspend_handle_id )
+void SVGSVGElementImpl::unsuspendRedraw(unsigned long /*suspend_handle_id*/ )
throw ( DOMException )
{
}
/**
*
*/
-NodeList SVGSVGElementImpl::getIntersectionList(const SVGRect &rect,
- const SVGElementPtr referenceElement )
+NodeList SVGSVGElementImpl::getIntersectionList(const SVGRect &/*rect*/,
+ const SVGElementPtr /*referenceElement*/ )
{
NodeList list;
return list;
/**
*
*/
-NodeList SVGSVGElementImpl::getEnclosureList(const SVGRect &rect,
- const SVGElementPtr referenceElement )
+NodeList SVGSVGElementImpl::getEnclosureList(const SVGRect &/*rect*/,
+ const SVGElementPtr /*referenceElement*/ )
{
NodeList list;
return list;
/**
*
*/
-bool SVGSVGElementImpl::checkIntersection(const SVGElementPtr element,
- const SVGRect &rect )
+bool SVGSVGElementImpl::checkIntersection(const SVGElementPtr /*element*/,
+ const SVGRect &/*rect*/ )
{
return false;
}
/**
*
*/
-bool SVGSVGElementImpl::checkEnclosure(const SVGElementPtr element,
- const SVGRect &rect )
+bool SVGSVGElementImpl::checkEnclosure(const SVGElementPtr /*element*/,
+ const SVGRect &/*rect*/ )
{
return false;
}
/**
*
*/
-ElementPtr SVGSVGElementImpl::getElementById(const DOMString& elementId )
+ElementPtr SVGSVGElementImpl::getElementById(const DOMString& /*elementId*/ )
{
return NULL;
}
/**
*
*/
-SVGPoint SVGPathElementImpl::getPointAtLength(double distance )
+SVGPoint SVGPathElementImpl::getPointAtLength(double /*distance*/ )
{
SVGPoint ret;
return ret;
/**
*
*/
-unsigned long SVGPathElementImpl::getPathSegAtLength(double distance )
+unsigned long SVGPathElementImpl::getPathSegAtLength(double /*distance*/ )
{
return 0L;
}
/**
*
*/
-double SVGTextContentElementImpl::getSubStringLength(unsigned long charnum, unsigned long nchars )
+double SVGTextContentElementImpl::getSubStringLength(unsigned long /*charnum*/, unsigned long /*nchars*/ )
throw ( DOMException )
{
return 0.0;
@@ -590,7 +590,7 @@ double SVGTextContentElementImpl::getSubStringLength(unsigned long charnum, unsi
/**
*
*/
-SVGPoint SVGTextContentElementImpl::getStartPositionOfChar(unsigned long charnum )
+SVGPoint SVGTextContentElementImpl::getStartPositionOfChar(unsigned long /*charnum*/ )
throw ( DOMException )
{
SVGPoint ret;
@@ -600,7 +600,7 @@ SVGPoint SVGTextContentElementImpl::getStartPositionOfChar(unsigned long charnum
/**
*
*/
-SVGPoint SVGTextContentElementImpl::getEndPositionOfChar(unsigned long charnum )
+SVGPoint SVGTextContentElementImpl::getEndPositionOfChar(unsigned long /*charnum*/ )
throw ( DOMException )
{
SVGPoint ret;
@@ -610,7 +610,7 @@ SVGPoint SVGTextContentElementImpl::getEndPositionOfChar(unsigned long charnum )
/**
*
*/
-SVGRect SVGTextContentElementImpl::getExtentOfChar(unsigned long charnum )
+SVGRect SVGTextContentElementImpl::getExtentOfChar(unsigned long /*charnum*/ )
throw ( DOMException )
{
SVGRect ret;
/**
*
*/
-double SVGTextContentElementImpl::getRotationOfChar(unsigned long charnum )
+double SVGTextContentElementImpl::getRotationOfChar(unsigned long /*charnum*/ )
throw ( DOMException )
{
return 0.0;
/**
*
*/
-long SVGTextContentElementImpl::getCharNumAtPosition(const SVGPoint &point )
+long SVGTextContentElementImpl::getCharNumAtPosition(const SVGPoint &/*point*/ )
{
return 0L;
}
/**
*
*/
-void SVGTextContentElementImpl::selectSubString(unsigned long charnum,
- unsigned long nchars )
+void SVGTextContentElementImpl::selectSubString(unsigned long /*charnum*/,
+ unsigned long /*nchars*/ )
throw ( DOMException )
{
}