summaryrefslogtreecommitdiff
path: root/scroller.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-19 22:03:02 +0000
committerlordjaxom <lordjaxom>2004-12-19 22:03:02 +0000
commit9aeb43d010d2452890d2c04832f1dfda8d963c4d (patch)
tree4907fb636d40fc14a8f4d53ce33540afab3119cb /scroller.c
parentac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d (diff)
downloadvdr-plugin-text2skin-9aeb43d010d2452890d2c04832f1dfda8d963c4d.tar.gz
vdr-plugin-text2skin-9aeb43d010d2452890d2c04832f1dfda8d963c4d.tar.bz2
Initial revision
Diffstat (limited to 'scroller.c')
-rw-r--r--scroller.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/scroller.c b/scroller.c
index 9a057cc..9275b46 100644
--- a/scroller.c
+++ b/scroller.c
@@ -1,22 +1,15 @@
/*
- * $Id: scroller.c,v 1.3 2004/12/08 17:13:26 lordjaxom Exp $
+ * $Id: scroller.c,v 1.1 2004/12/19 22:03:18 lordjaxom Exp $
*/
#include "scroller.h"
#include "screen.h"
#include <vdr/tools.h>
-cText2SkinScroller::cText2SkinScroller(void) {
- mScreen = NULL;
- mLeft = mTop = mWidth = mHeight = 0;
- mFont = NULL;
- mColorFg = 0;
- mColorBg = 0;
- mOffset = 0;
- mShown = 0;
-}
-
-cText2SkinScroller::cText2SkinScroller(cText2SkinScreen *Screen, int Left, int Top, int Width, int Height, const char *Text, const cFont *Font, tColor ColorFg, tColor ColorBg) {
+cText2SkinScroller::cText2SkinScroller(cText2SkinScreen *Screen, int Left, int Top, int Width,
+ int Height, const char *Text, const cFont *Font,
+ tColor ColorFg, tColor ColorBg)
+{
Set(Screen, Left, Top, Width, Height, Text, Font, ColorFg, ColorBg);
}