diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-12 13:42:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-12 13:42:00 +0100 |
commit | e5295be30a96acfbfc7919b938965ac645c05c96 (patch) | |
tree | 8829ab332e304fe8c13cf189156c8b265e69aea5 | |
parent | 027ec5a63f315596253ac77bfc81929d0de26903 (diff) | |
download | vdr-e5295be30a96acfbfc7919b938965ac645c05c96.tar.gz vdr-e5295be30a96acfbfc7919b938965ac645c05c96.tar.bz2 |
Fixed the description of the OSD drawing functions DrawEllipse()
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | osd.h | 8 |
2 files changed, 6 insertions, 4 deletions
@@ -7603,3 +7603,5 @@ Video Disk Recorder Revision History - Fixed selecting the last replayed recording in the Recordings menu in case there are folders and plain recordings with names that differ only in non-alphanumeric characters (reported by Andre Weidemann). +- Fixed the description of the OSD drawing functions DrawEllipse() (the values -5...-8 + for the Quadrants parameter are not implemented). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.h 2.19 2013/02/08 09:47:56 kls Exp $ + * $Id: osd.h 2.20 2013/02/12 13:39:08 kls Exp $ */ #ifndef __OSD_H @@ -253,7 +253,7 @@ public: ///< 0 draws the entire ellipse ///< 1..4 draws only the first, second, third or fourth quadrant, respectively ///< 5..8 draws the right, top, left or bottom half, respectively - ///< -1..-8 draws the inverted part of the given quadrant(s) + ///< -1..-4 draws the inverted part of the given quadrant ///< 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); @@ -624,7 +624,7 @@ public: ///< 0 draws the entire ellipse ///< 1..4 draws only the first, second, third or fourth quadrant, respectively ///< 5..8 draws the right, top, left or bottom half, respectively - ///< -1..-8 draws the inverted part of the given quadrant(s) + ///< -1..-4 draws the inverted part of the given quadrant ///< If Quadrants is not 0, the coordinates are those of the actual area, not ///< the full circle! virtual void DrawSlope(const cRect &Rect, tColor Color, int Type) = 0; @@ -897,7 +897,7 @@ public: ///< 0 draws the entire ellipse ///< 1..4 draws only the first, second, third or fourth quadrant, respectively ///< 5..8 draws the right, top, left or bottom half, respectively - ///< -1..-8 draws the inverted part of the given quadrant(s) + ///< -1..-4 draws the inverted part of the given quadrant ///< If Quadrants is not 0, the coordinates are those of the actual area, not ///< the full circle! virtual void DrawSlope(int x1, int y1, int x2, int y2, tColor Color, int Type); |