summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSCursorImageValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/CSSCursorImageValue.h')
-rw-r--r--WebCore/css/CSSCursorImageValue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/WebCore/css/CSSCursorImageValue.h b/WebCore/css/CSSCursorImageValue.h
index efcdda6..742138c 100644
--- a/WebCore/css/CSSCursorImageValue.h
+++ b/WebCore/css/CSSCursorImageValue.h
@@ -32,14 +32,14 @@ class SVGElement;
class CSSCursorImageValue : public CSSImageValue {
public:
- static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotspot)
+ static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotSpot)
{
- return adoptRef(new CSSCursorImageValue(url, hotspot));
+ return adoptRef(new CSSCursorImageValue(url, hotSpot));
}
virtual ~CSSCursorImageValue();
- IntPoint hotspot() const { return m_hotspot; }
+ IntPoint hotSpot() const { return m_hotSpot; }
bool updateIfSVGCursorIsUsed(Element*);
virtual StyleCachedImage* cachedImage(DocLoader*);
@@ -49,9 +49,9 @@ public:
#endif
private:
- CSSCursorImageValue(const String& url, const IntPoint& hotspot);
+ CSSCursorImageValue(const String& url, const IntPoint& hotSpot);
- IntPoint m_hotspot;
+ IntPoint m_hotSpot;
#if ENABLE(SVG)
HashSet<SVGElement*> m_referencedElements;