~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to WebCore/svg/SVGList.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-02-04 19:30:57 UTC
  • mfrom: (1.2.8 upstream) (4.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100204193057-d3018lm1fipb0703
* New upstream release
* debian/copyright:
- Updated with changes since 1.1.19.

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
 
177
177
        // Updating facilities, used by JSSVGPODTypeWrapperCreatorForList
178
178
        Item value() const { return m_item; }
179
 
        void setValue(Item newItem) { m_item = newItem; }
 
179
        void setValue(const Item& newItem) { m_item = newItem; }
180
180
 
181
181
    private:
182
182
        SVGPODListItem() : m_item() { }