Show
Ignore:
Timestamp:
03/19/06 18:57:59 (3 years ago)
Author:
darin
Message:
  • global rename, done by script
  • <lots of files>: Renamed XXXImpl to XXX, and a number of other renames. See WebKitTools/Scripts/do-webcore-rename version 13392 for details.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/rendering/RenderText.h

    r13134 r13393  
    2626#define KHTML_RenderText_H 
    2727 
    28 #include "TextImpl.h" 
    29 #include "render_object.h" 
     28#include "Text.h" 
     29#include "RenderObject.h" 
    3030#include <assert.h> 
    3131#include <kxmlcore/PassRefPtr.h> 
     
    4646 
    4747public: 
    48     RenderText(NodeImpl*, StringImpl*); 
     48    RenderText(Node*, StringImpl*); 
    4949 
    5050    virtual bool isTextFragment() const; 
     
    7373                             HitTestAction hitTestAction) { assert(false); return false; } 
    7474 
    75     virtual void absoluteRects(QValueList<IntRect>& rects, int _tx, int _ty); 
    76     virtual QValueList<IntRect> RenderText::lineBoxRects(); 
     75    virtual void absoluteRects(DeprecatedValueList<IntRect>& rects, int _tx, int _ty); 
     76    virtual DeprecatedValueList<IntRect> RenderText::lineBoxRects(); 
    7777 
    7878    virtual VisiblePosition positionForCoordinates(int x, int y); 
     
    117117 
    118118    void setText(StringImpl*, bool force = false); 
    119     void setTextWithOffset(StringImpl*, uint offset, uint len, bool force = false); 
     119    void setTextWithOffset(StringImpl*, unsigned offset, unsigned len, bool force = false); 
    120120 
    121121    virtual bool canBeSelectionLeaf() const { return true; } 
     
    133133    const Font* font(bool firstLine) const; 
    134134 
    135     TextImpl *element() const { return static_cast<TextImpl*>(RenderObject::element()); } 
     135    Text *element() const { return static_cast<Text*>(RenderObject::element()); } 
    136136 
    137137    InlineTextBox* firstTextBox() const { return m_firstTextBox; }