summaryrefslogtreecommitdiff
path: root/dvbosd.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-18 08:48:43 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-18 08:48:43 +0200
commit5b64f51b0b168c709a635c72712374c2a1f47b3f (patch)
treec91d8764639ed77ca677a20bef6fae34126727fc /dvbosd.c
parent6e85bc48b88e9f4d4a14157e990de97c928dc4b7 (diff)
downloadvdr-5b64f51b0b168c709a635c72712374c2a1f47b3f.tar.gz
vdr-5b64f51b0b168c709a635c72712374c2a1f47b3f.tar.bz2
Fixed some function headers to make them compile with gcc 3.x
Diffstat (limited to 'dvbosd.c')
-rw-r--r--dvbosd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbosd.c b/dvbosd.c
index eb962613..67c7fbc0 100644
--- a/dvbosd.c
+++ b/dvbosd.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbosd.c 1.13 2002/04/13 11:34:48 kls Exp $
+ * $Id: dvbosd.c 1.13.1.1 2002/05/18 08:44:46 kls Exp $
*/
#include "dvbosd.h"
@@ -528,7 +528,7 @@ eDvbFont cDvbOsd::SetFont(eDvbFont Font)
return oldFont;
}
-void cDvbOsd::Text(int x, int y, const char *s, eDvbColor ColorFg = clrWhite, eDvbColor ColorBg = clrBackground, tWindowHandle Window)
+void cDvbOsd::Text(int x, int y, const char *s, eDvbColor ColorFg, eDvbColor ColorBg, tWindowHandle Window)
{
cWindow *w = (Window == ALL_TILED_WINDOWS) ? GetWindow(x, y) : GetWindow(Window);
if (w)