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 moved

Legend:

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

    r12263 r13393  
    2626#define RENDER_INLINE_H 
    2727 
    28 #include "render_flow.h" 
     28#include "RenderFlow.h" 
    2929 
    30 namespace DOM { 
     30namespace WebCore { 
    3131    class Position; 
    3232} 
    3333 
    34 namespace khtml { 
     34namespace WebCore { 
    3535 
    3636class RenderInline : public RenderFlow 
    3737{ 
    3838public: 
    39     RenderInline(DOM::NodeImpl* node); 
     39    RenderInline(WebCore::Node* node); 
    4040    virtual ~RenderInline(); 
    4141 
     
    7171    virtual int height() const; 
    7272     
    73     // used to calculate offsetWidth/Height.  Overridden by inlines (render_flow) to return 
     73    // used to calculate offsetWidth/Height.  Overridden by inlines (RenderFlow) to return 
    7474    // the remaining width on a given line (and the height of a single line). 
    7575    virtual int offsetLeft() const; 
    7676    virtual int offsetTop() const; 
    7777 
    78     void absoluteRects(QValueList<IntRect>& rects, int _tx, int _ty); 
     78    void absoluteRects(DeprecatedValueList<IntRect>& rects, int _tx, int _ty); 
    7979 
    8080    virtual VisiblePosition positionForCoordinates(int x, int y);