diff options
Diffstat (limited to 'libcore/pixmapcontainer.c')
-rw-r--r-- | libcore/pixmapcontainer.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libcore/pixmapcontainer.c b/libcore/pixmapcontainer.c index 4ee651a..fe5190f 100644 --- a/libcore/pixmapcontainer.c +++ b/libcore/pixmapcontainer.c @@ -136,6 +136,15 @@ void cPixmapContainer::DrawEllipse(int num, const cRect &Rect, tColor Color, int pixmaps[num]->DrawEllipse(Rect, Color, Quadrants); } +void cPixmapContainer::DrawSlope(int num, const cRect &Rect, tColor Color, int Type) { + if (checkRunning && !Running()) + return; + cMutexLock MutexLock(&mutex); + if (!pixmaps[num]) + return; + pixmaps[num]->DrawSlope(Rect, Color, Type); +} + void cPixmapContainer::DrawImage(int num, const cPoint &Point, const cImage &Image) { if (checkRunning && !Running()) return; |