diff --git a/gfx/thebes/public/gfxMatrix.h b/gfx/thebes/public/gfxMatrix.h index b39213bd298..7f48fb3eaff 100644 --- a/gfx/thebes/public/gfxMatrix.h +++ b/gfx/thebes/public/gfxMatrix.h @@ -96,6 +96,10 @@ public: (mat.y0 == m.mat.y0)); } + bool operator!=(const gfxMatrix& m) const { + return !(*this == m); + } + gfxMatrix& operator=(const cairo_matrix_t& m) { mat = m; return *this;