From bca28f9e9aaf8973e90dc96478b4c424af20d19c Mon Sep 17 00:00:00 2001 From: Ben Murdoch Date: Mon, 17 Aug 2009 16:31:14 +0100 Subject: Compilation fixes. --- WebCore/html/HTMLAnchorElement.h | 2 +- WebCore/rendering/RenderBlock.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'WebCore') diff --git a/WebCore/html/HTMLAnchorElement.h b/WebCore/html/HTMLAnchorElement.h index 3c73118..7779bed 100644 --- a/WebCore/html/HTMLAnchorElement.h +++ b/WebCore/html/HTMLAnchorElement.h @@ -41,6 +41,7 @@ public: String hash() const; String host() const; String hostname() const; + virtual bool isFocusable() const; String pathname() const; String port() const; String protocol() const; @@ -60,7 +61,6 @@ private: virtual bool supportsFocus() const; virtual bool isMouseFocusable() const; virtual bool isKeyboardFocusable(KeyboardEvent*) const; - virtual bool isFocusable() const; virtual void defaultEventHandler(Event*); virtual void setActive(bool active = true, bool pause = false); virtual void accessKeyAction(bool fullAction); diff --git a/WebCore/rendering/RenderBlock.h b/WebCore/rendering/RenderBlock.h index f675b67..839be16 100644 --- a/WebCore/rendering/RenderBlock.h +++ b/WebCore/rendering/RenderBlock.h @@ -149,6 +149,9 @@ public: // style from this RenderBlock. RenderBlock* createAnonymousBlock() const; + Vector* columnRects() const; + int columnGap() const; + protected: virtual void setOverflowHeight(int h) { m_overflowHeight = h; } virtual void setOverflowWidth(int w) { m_overflowWidth = w; } @@ -350,9 +353,7 @@ private: int desiredColumnWidth() const; unsigned desiredColumnCount() const; - Vector* columnRects() const; void setDesiredColumnCountAndWidth(int count, int width); - int columnGap() const; void paintContinuationOutlines(PaintInfo&, int tx, int ty); -- cgit v1.1