Bug 1073960 - Mark DrawTarget::GetFormat() as const. r=Bas

This commit is contained in:
Jonathan Watt 2014-09-29 14:15:18 +01:00
Родитель ae5259ef7b
Коммит 27111a9c27
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -992,7 +992,7 @@ public:
inline void ConcatTransform(const Matrix &aTransform)
{ SetTransform(aTransform * Matrix(GetTransform())); }
SurfaceFormat GetFormat() { return mFormat; }
SurfaceFormat GetFormat() const { return mFormat; }
/** Tries to get a native surface for a DrawTarget, this may fail if the
* draw target cannot convert to this surface type.