diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-31 14:09:52 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-31 14:09:52 +0200 |
commit | d6f2f1675c57cb067c7d1c1815b871d1acc2fe19 (patch) | |
tree | da310e344561f7f57ae342a78746cf2d0ec540bc /osd.h | |
parent | e056cae8921a68704bf1a0cb4babcdf60d31be2d (diff) | |
download | vdr-d6f2f1675c57cb067c7d1c1815b871d1acc2fe19.tar.gz vdr-d6f2f1675c57cb067c7d1c1815b871d1acc2fe19.tar.bz2 |
Made some functions of cFont virtual to allow implementing dummy fonts for the 'curses' skin
Diffstat (limited to 'osd.h')
-rw-r--r-- | osd.h | 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: osd.h 1.42 2004/05/28 15:25:58 kls Exp $ + * $Id: osd.h 1.43 2004/05/31 14:09:00 kls Exp $ */ #ifndef __OSD_H @@ -290,7 +290,7 @@ public: ///< -1..-8 draws the inverted part of the given quadrant(s) ///< If Quadrants is not 0, the coordinates are those of the actual area, not ///< the full circle! - void DrawSlope(int x1, int y1, int x2, int y2, tColor Color, int Type); + virtual void DrawSlope(int x1, int y1, int x2, int y2, tColor Color, int Type); ///< Draws a "slope" into the rectangle defined by the upper left (x1, y1) and ///< lower right (x2, y2) corners with the given Color. Type controls the ///< direction of the slope and which side of it will be drawn: |