Bug 1238846 (part 2) - Remove gfxContext::mOriginalDT, which is unused. r=mattwoodrow.

--HG--
extra : rebase_source : 0709544d8596fd368be2b4db5395322726fe57b6
This commit is contained in:
Nicholas Nethercote 2016-01-12 13:42:02 -08:00
Родитель 534a872e52
Коммит b003fbc631
2 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -71,7 +71,6 @@ gfxContext::gfxContext(DrawTarget *aTarget, const Point& aDeviceOffset)
: mPathIsRect(false)
, mTransformChanged(false)
, mDT(aTarget)
, mOriginalDT(aTarget)
{
MOZ_ASSERT(aTarget, "Don't create a gfxContext without a DrawTarget");

Просмотреть файл

@ -536,7 +536,6 @@ private:
const AzureState &CurrentState() const { return mStateStack[mStateStack.Length() - 1]; }
RefPtr<DrawTarget> mDT;
RefPtr<DrawTarget> mOriginalDT;
};
/**