[Scummvm-cvs-logs] SF.net SVN: scummvm:[50955] scummvm/trunk/engines/sci

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Sat Jul 17 02:05:27 CEST 2010


Revision: 50955
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50955&view=rev
Author:   lordhoto
Date:     2010-07-17 00:05:27 +0000 (Sat, 17 Jul 2010)

Log Message:
-----------
Remove extra ";" in class declarations.

Modified Paths:
--------------
    scummvm/trunk/engines/sci/graphics/font.h
    scummvm/trunk/engines/sci/resource_intern.h
    scummvm/trunk/engines/sci/sound/drivers/mididriver.h

Modified: scummvm/trunk/engines/sci/graphics/font.h
===================================================================
--- scummvm/trunk/engines/sci/graphics/font.h	2010-07-16 23:50:46 UTC (rev 50954)
+++ scummvm/trunk/engines/sci/graphics/font.h	2010-07-17 00:05:27 UTC (rev 50955)
@@ -32,14 +32,14 @@
 
 class GfxFont {
 public:
-	GfxFont() {};
-	virtual ~GfxFont() {};
+	GfxFont() {}
+	virtual ~GfxFont() {}
 
-	virtual GuiResourceId getResourceId() { return 0; };
-	virtual byte getHeight() { return 0; };
-	virtual bool isDoubleByte(uint16 chr) { return false; };
-	virtual byte getCharWidth(uint16 chr) { return 0; };
-	virtual void draw(uint16 chr, int16 top, int16 left, byte color, bool greyedOutput) {};
+	virtual GuiResourceId getResourceId() { return 0; }
+	virtual byte getHeight() { return 0; }
+	virtual bool isDoubleByte(uint16 chr) { return false; }
+	virtual byte getCharWidth(uint16 chr) { return 0; }
+	virtual void draw(uint16 chr, int16 top, int16 left, byte color, bool greyedOutput) {}
 };
 
 

Modified: scummvm/trunk/engines/sci/resource_intern.h
===================================================================
--- scummvm/trunk/engines/sci/resource_intern.h	2010-07-16 23:50:46 UTC (rev 50954)
+++ scummvm/trunk/engines/sci/resource_intern.h	2010-07-17 00:05:27 UTC (rev 50955)
@@ -73,7 +73,7 @@
 	 */
 	virtual ResourceSource *findVolume(ResourceSource *map, int volNum) {
 		return NULL;
-	};
+	}
 
 	/**
 	 * Scan this source for TODO.
@@ -122,7 +122,7 @@
 		if (_associatedMap == map && _volumeNumber == volNum)
 			return this;
 		return NULL;
-	};
+	}
 };
 
 class ExtMapResourceSource : public ResourceSource {

Modified: scummvm/trunk/engines/sci/sound/drivers/mididriver.h
===================================================================
--- scummvm/trunk/engines/sci/sound/drivers/mididriver.h	2010-07-16 23:50:46 UTC (rev 50954)
+++ scummvm/trunk/engines/sci/sound/drivers/mididriver.h	2010-07-17 00:05:27 UTC (rev 50955)
@@ -86,7 +86,7 @@
 
 	virtual byte getPlayId() = 0;
 	virtual int getPolyphony() const = 0;
-	virtual int getFirstChannel() { return 0; };
+	virtual int getFirstChannel() { return 0; }
 
 	virtual void setVolume(byte volume) {
 		if(_driver)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list