summaryrefslogtreecommitdiff
path: root/font.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-03-20 10:10:38 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-03-20 10:10:38 +0100
commite760b14f646004a7fe99e4561156a132a0572cdb (patch)
treee90c068eea96be4e3a98fd2f734617032e859182 /font.h
parent86a9d179bd27177fafa0d0b5931c377e8b90e9d5 (diff)
downloadvdr-e760b14f646004a7fe99e4561156a132a0572cdb.tar.gz
vdr-e760b14f646004a7fe99e4561156a132a0572cdb.tar.bz2
Some fixes to avoid compiler warnings in gcc 4.0
Diffstat (limited to 'font.h')
-rw-r--r--font.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/font.h b/font.h
index 012f6c54..b5a21a3a 100644
--- a/font.h
+++ b/font.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: font.h 1.10 2005/01/14 13:25:35 kls Exp $
+ * $Id: font.h 1.11 2005/03/19 15:51:19 kls Exp $
*/
#ifndef __FONT_H
@@ -44,6 +44,7 @@ private:
int height;
public:
cFont(void *Data);
+ virtual ~cFont() {}
void SetData(void *Data);
virtual int Width(unsigned char c) const { return data[c]->width; }
///< Returns the width of the given character.