Bug 1088753 - Remove gfxContext::NewSubPath(). r=Bas

This commit is contained in:
Jonathan Watt 2014-10-29 01:59:36 +00:00
parent d3634a279a
commit d60d47b89b
2 changed files with 0 additions and 13 deletions

View File

@ -281,13 +281,6 @@ gfxContext::MoveTo(const gfxPoint& pt)
mPathBuilder->MoveTo(ToPoint(pt));
}
void
gfxContext::NewSubPath()
{
// XXX - This has no users, we should kill it, it should be equivelant to a
// MoveTo to the path's current point.
}
void
gfxContext::LineTo(const gfxPoint& pt)
{

View File

@ -144,12 +144,6 @@ public:
*/
void MoveTo(const gfxPoint& pt);
/**
* Creates a new subpath starting at the current point.
* Equivalent to MoveTo(CurrentPoint()).
*/
void NewSubPath();
/**
* Returns the current point in the current path.
*/