diff options
Diffstat (limited to 'WebCore/platform/haiku')
-rw-r--r-- | WebCore/platform/haiku/RenderThemeHaiku.cpp | 6 | ||||
-rw-r--r-- | WebCore/platform/haiku/RenderThemeHaiku.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/platform/haiku/RenderThemeHaiku.cpp b/WebCore/platform/haiku/RenderThemeHaiku.cpp index 4327795..78dfa9e 100644 --- a/WebCore/platform/haiku/RenderThemeHaiku.cpp +++ b/WebCore/platform/haiku/RenderThemeHaiku.cpp @@ -107,7 +107,7 @@ void RenderThemeHaiku::systemFont(int propId, FontDescription&) const notImplemented(); } -bool RenderThemeHaiku::paintCheckbox(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect) +bool RenderThemeHaiku::paintCheckbox(RenderObject*, const PaintInfo& info, const IntRect& intRect) { if (info.context->paintingDisabled()) return false; @@ -139,7 +139,7 @@ void RenderThemeHaiku::setCheckboxSize(RenderStyle* style) const style->setHeight(Length(size, Fixed)); } -bool RenderThemeHaiku::paintRadio(RenderObject*, const RenderObject::PaintInfo& info, const IntRect& intRect) +bool RenderThemeHaiku::paintRadio(RenderObject*, const PaintInfo& info, const IntRect& intRect) { if (info.context->paintingDisabled()) return false; @@ -169,7 +169,7 @@ void RenderThemeHaiku::adjustMenuListStyle(CSSStyleSelector*, RenderStyle* style style->setMinHeight(Length(minHeight, Fixed)); } -bool RenderThemeHaiku::paintMenuList(RenderObject*, const RenderObject::PaintInfo&, const IntRect&) +bool RenderThemeHaiku::paintMenuList(RenderObject*, const PaintInfo&, const IntRect&) { notImplemented(); return false; diff --git a/WebCore/platform/haiku/RenderThemeHaiku.h b/WebCore/platform/haiku/RenderThemeHaiku.h index 7daebc4..06b7bdf 100644 --- a/WebCore/platform/haiku/RenderThemeHaiku.h +++ b/WebCore/platform/haiku/RenderThemeHaiku.h @@ -55,14 +55,14 @@ namespace WebCore { virtual void systemFont(int propId, FontDescription&) const; protected: - virtual bool paintCheckbox(RenderObject*, const RenderObject::PaintInfo&, const IntRect&); + virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&); virtual void setCheckboxSize(RenderStyle*) const; - virtual bool paintRadio(RenderObject*, const RenderObject::PaintInfo&, const IntRect&); + virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&); virtual void setRadioSize(RenderStyle*) const; virtual void adjustMenuListStyle(CSSStyleSelector*, RenderStyle*, Element*) const; - virtual bool paintMenuList(RenderObject*, const RenderObject::PaintInfo&, const IntRect&); + virtual bool paintMenuList(RenderObject*, const PaintInfo&, const IntRect&); }; } // namespace WebCore |