adding != operator. r=mrbkap/sicking

This commit is contained in:
pavlov%pavlov.net 2006-07-07 23:13:39 +00:00
Родитель 283c756727
Коммит 8ee6209611
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -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;