diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-18 08:57:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-18 08:57:42 +0200 |
commit | 7da1dc6e1df129d0c04b3904c97d7544d7a3c88d (patch) | |
tree | 040d9d318be255eaaf501e38b80bc0c819100846 /osdbase.c | |
parent | a5c2af72778b26b5b51fc9327bb4f5e01b5ed2da (diff) | |
download | vdr-7da1dc6e1df129d0c04b3904c97d7544d7a3c88d.tar.gz vdr-7da1dc6e1df129d0c04b3904c97d7544d7a3c88d.tar.bz2 |
Fixed some function headers to make them compile with gcc 3.x
Diffstat (limited to 'osdbase.c')
-rw-r--r-- | osdbase.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osdbase.c 1.2 2002/05/13 16:30:59 kls Exp $ + * $Id: osdbase.c 1.3 2002/05/18 08:54:31 kls Exp $ */ #include "osdbase.h" @@ -442,7 +442,7 @@ eDvbFont cOsd::SetFont(eDvbFont Font) return oldFont; } -void cOsd::Text(int x, int y, const char *s, eDvbColor ColorFg = clrWhite, eDvbColor ColorBg = clrBackground, tWindowHandle Window) +void cOsd::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) |