diff options
author | lordjaxom <lordjaxom> | 2005-01-20 20:45:46 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-20 20:45:46 +0000 |
commit | 120a4853caa4833341a415e708ff1f102e65cbbb (patch) | |
tree | 676a99ffb850c8101a68da14d08a2328670b455a | |
parent | 756df3bcf0d9b39fb9197309f59e411cee6467f5 (diff) | |
download | vdr-plugin-text2skin-120a4853caa4833341a415e708ff1f102e65cbbb.tar.gz vdr-plugin-text2skin-120a4853caa4833341a415e708ff1f102e65cbbb.tar.bz2 |
- fixed fg/bg mixup error
-rw-r--r-- | render.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* - * $Id: render.h,v 1.10 2005/01/20 17:07:09 lordjaxom Exp $ + * $Id: render.h,v 1.11 2005/01/20 20:45:46 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_RENDER_H @@ -96,7 +96,7 @@ protected: void DrawEllipse(const txPoint &Pos, const txSize &Size, const tColor *Fg, int Arc); void DrawSlope(const txPoint &Pos, const txSize &Size, const tColor *Fg, int Arc); void DrawProgressbar(const txPoint &Pos, const txSize &Size, int Current, int Total, - const tColor *Fg, const tColor *Bg, const tColor *Selected, + const tColor *Bg, const tColor *Fg, const tColor *Selected, const tColor *Mark, const tColor *Cur, const cMarks *Marks = NULL); void DrawMark(const txPoint &Pos, const txSize &Size, bool Start, bool Current, bool Horizontal, const tColor *Mark, const tColor *Cur); |