summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/Path.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/Path.h')
-rw-r--r--WebCore/platform/graphics/Path.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/WebCore/platform/graphics/Path.h b/WebCore/platform/graphics/Path.h
index 9896713..43ba889 100644
--- a/WebCore/platform/graphics/Path.h
+++ b/WebCore/platform/graphics/Path.h
@@ -133,11 +133,6 @@ namespace WebCore {
void addBezierCurveTo(const FloatPoint& controlPoint1, const FloatPoint& controlPoint2, const FloatPoint& endPoint);
void addArcTo(const FloatPoint&, const FloatPoint&, float radius);
void closeSubpath();
-#if PLATFORM(QT)
- void closeCanvasSubpath();
-#else
- void closeCanvasSubpath() { closeSubpath(); }
-#endif
void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise);
void addRect(const FloatRect&);
@@ -161,10 +156,6 @@ namespace WebCore {
private:
PlatformPathPtr m_path;
-
-#if PLATFORM(QT)
- int m_lastMoveToIndex;
-#endif
};
}