Remove unused Canvas members

The various Canvas have _max and _base variables which are not
used, better to remove them.
This commit is contained in:
Christophe Fergeau 2012-03-05 10:21:29 +01:00
parent 910a3f8419
commit 01c6f4d2c6
4 changed files with 0 additions and 8 deletions

View File

@ -70,7 +70,6 @@ void Canvas::clear()
void Canvas::begin_draw(SpiceMsgDisplayBase& base, int size, size_t min_size)
{
_base = (uintptr_t)&base;
}
void Canvas::draw_fill(SpiceMsgDisplayDrawFill& fill, int size)

View File

@ -343,9 +343,6 @@ private:
ZlibDecoder _zlib_decoder;
SurfacesCache& _surfaces_cache;
unsigned long _base;
unsigned long _max;
};

View File

@ -48,8 +48,6 @@ private:
RedPixmapGdi *_helper_pixmap;
HDC _dc;
HBITMAP _prev_bitmap;
unsigned long _base;
unsigned long _max;
};
#endif

View File

@ -45,8 +45,6 @@ public:
private:
RedPixmap *_pixmap;
unsigned long _base;
unsigned long _max;
};
#endif