summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGList.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGList.h')
-rw-r--r--WebCore/svg/SVGList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/svg/SVGList.h b/WebCore/svg/SVGList.h
index 8fb3bc1..e1249e2 100644
--- a/WebCore/svg/SVGList.h
+++ b/WebCore/svg/SVGList.h
@@ -176,7 +176,7 @@ namespace WebCore {
// Updating facilities, used by JSSVGPODTypeWrapperCreatorForList
Item value() const { return m_item; }
- void setValue(Item newItem) { m_item = newItem; }
+ void setValue(const Item& newItem) { m_item = newItem; }
private:
SVGPODListItem() : m_item() { }