OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
5 * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 5 * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
6 * Copyright (C) 2012 University of Szeged | 6 * Copyright (C) 2012 University of Szeged |
7 * Copyright (C) 2012 Renata Hodovan <reni@webkit.org> | 7 * Copyright (C) 2012 Renata Hodovan <reni@webkit.org> |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 | 748 |
749 m_resource = resource; | 749 m_resource = resource; |
750 if (m_resource) | 750 if (m_resource) |
751 m_resource->addClient(this); | 751 m_resource->addClient(this); |
752 } | 752 } |
753 | 753 |
754 void SVGUseElement::trace(Visitor* visitor) | 754 void SVGUseElement::trace(Visitor* visitor) |
755 { | 755 { |
756 visitor->trace(m_targetElementInstance); | 756 visitor->trace(m_targetElementInstance); |
757 SVGGraphicsElement::trace(visitor); | 757 SVGGraphicsElement::trace(visitor); |
| 758 DocumentResourceClient::trace(visitor); |
758 } | 759 } |
759 | 760 |
760 } | 761 } |
OLD | NEW |