Painter: minor fix

git-svn-id: svn://ultimatepp.org/upp/trunk@12514 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-11-11 23:28:48 +00:00
parent 4d55be5d83
commit 623a6d74bd

View file

@ -322,7 +322,7 @@ public:
BufferPainter& PreClip(bool b = true) { dopreclip = b; preclip_mtx_serial = -1; return *this; }
BufferPainter& PreClipDashed() { dopreclip = 2; preclip_mtx_serial = -1; return *this; }
BufferPainter& ImageCache(bool b = true) { imagecache = b; return *this; }
BufferPainter& NoImageCache(bool b = true) { ImageCache(false); }
BufferPainter& NoImageCache(bool b = true) { return ImageCache(false); }
BufferPainter(ImageBuffer& ib, int mode = MODE_ANTIALIASED);
BufferPainter(PainterTarget& t, double tolerance = Null);