Reviewed by Adele Peterson.
Bug 24619: RenderObject::selectionStartEnd does not need to be a virtual function
https://bugs.webkit.org/show_bug.cgi?id=24619
* rendering/RenderObject.h: Remove virtual keyword from selectionStartEnd declaration.
* rendering/RenderView.h: Ditto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@41748
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-03-16 Darin Adler <darin@apple.com>
+
+ Reviewed by Adele Peterson.
+
+ Bug 24619: RenderObject::selectionStartEnd does not need to be a virtual function
+ https://bugs.webkit.org/show_bug.cgi?id=24619
+
+ * rendering/RenderObject.h: Remove virtual keyword from selectionStartEnd declaration.
+ * rendering/RenderView.h: Ditto.
+
2009-03-16 Peter Kasting <pkasting@google.com>
Reviewed by David Hyatt.
virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { }
virtual bool willRenderImage(CachedImage*);
- virtual void selectionStartEnd(int& spos, int& epos) const;
+ void selectionStartEnd(int& spos, int& epos) const;
RenderObject* paintingRootForChildren(PaintInfo& paintInfo) const
{
virtual IntRect viewRect() const;
- virtual void selectionStartEnd(int& startPos, int& endPos) const;
+ void selectionStartEnd(int& startPos, int& endPos) const;
IntRect printRect() const { return m_printRect; }
void setPrintRect(const IntRect& r) { m_printRect = r; }