diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-04-05 10:20:58 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-04-05 10:20:58 +0200 |
commit | 9ff445dce4d2ed235515c945d745466ce2275438 (patch) | |
tree | afb93553c1448f3087ea4593895e60fc075e0658 /osd.c | |
parent | 168907fd0bcd90d8af55ee2fe484eb0d0c436dcf (diff) | |
download | vdr-9ff445dce4d2ed235515c945d745466ce2275438.tar.gz vdr-9ff445dce4d2ed235515c945d745466ce2275438.tar.bz2 |
Added missing virtual destructor to cPalette
Diffstat (limited to 'osd.c')
-rw-r--r-- | osd.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.c 2.1 2009/01/16 14:34:32 kls Exp $ + * $Id: osd.c 2.2 2009/04/05 10:17:25 kls Exp $ */ #include "osd.h" @@ -24,6 +24,10 @@ cPalette::cPalette(int Bpp) SetAntiAliasGranularity(10, 10); } +cPalette::~cPalette() +{ +} + void cPalette::SetAntiAliasGranularity(uint FixedColors, uint BlendColors) { if (FixedColors >= MAXNUMCOLORS || BlendColors == 0) |