diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /khtml/rendering/render_table.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/rendering/render_table.h')
-rw-r--r-- | khtml/rendering/render_table.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/khtml/rendering/render_table.h b/khtml/rendering/render_table.h index e6da166cb..a6de6cfaf 100644 --- a/khtml/rendering/render_table.h +++ b/khtml/rendering/render_table.h @@ -87,7 +87,7 @@ public: virtual void addChild(RenderObject *child, RenderObject *beforeChild = 0); virtual void paint( PaintInfo&, int tx, int ty); virtual void paintBoxDecorations(PaintInfo&, int _tx, int _ty); - virtual void tqlayout(); + virtual void layout(); virtual void calcMinMaxWidth(); virtual void close(); @@ -224,7 +224,7 @@ public: void setCellWidths(); void calcRowHeight(); - int tqlayoutRows( int height ); + int layoutRows( int height ); RenderTable *table() const { return static_cast<RenderTable *>(parent()); } @@ -315,7 +315,7 @@ public: virtual bool nodeAtPoint(NodeInfo& info, int x, int y, int tx, int ty, HitTestAction action, bool inside); - virtual void tqlayout(); + virtual void layout(); virtual RenderObject* removeChildNode(RenderObject* child); @@ -336,7 +336,7 @@ class RenderTableCell : public RenderBlock public: RenderTableCell(DOM::NodeImpl* node); - virtual void tqlayout(); + virtual void layout(); virtual void detach(); virtual const char *renderName() const { return "RenderTableCell"; } @@ -396,7 +396,7 @@ public: // lie position to outside observers virtual int yPos() const { return m_y + _topExtra; } - virtual void tqrepaintRectangle(int x, int y, int w, int h, Priority p=NormalPriority, bool f=false); + virtual void repaintRectangle(int x, int y, int w, int h, Priority p=NormalPriority, bool f=false); virtual bool absolutePosition(int &xPos, int &yPos, bool f = false) const; virtual short baselinePosition( bool = false ) const; @@ -455,7 +455,7 @@ public: virtual short lineHeight( bool ) const { return 0; } virtual void position(InlineBox*, int, int, bool) {} - virtual void tqlayout() {} + virtual void layout() {} virtual bool requiresLayer() const { return false; } virtual void updateFromElement(); |