[Scummvm-cvs-logs] CVS: scummvm/graphics font.h,1.8,1.9
Max Horn
fingolfin at users.sourceforge.net
Mon Jun 20 11:00:13 CEST 2005
Update of /cvsroot/scummvm/scummvm/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25538/graphics
Modified Files:
font.h
Log Message:
Added virtual destructor, to silence a few more GCC 4 warnings
Index: font.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/graphics/font.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- font.h 15 May 2005 16:13:52 -0000 1.8
+++ font.h 20 Jun 2005 17:59:00 -0000 1.9
@@ -40,6 +40,9 @@
*/
class Font {
public:
+ Font() {}
+ virtual ~Font() {}
+
virtual int getFontHeight() const = 0;
virtual int getMaxCharWidth() const = 0;
More information about the Scummvm-git-logs
mailing list