[Scummvm-cvs-logs] CVS: scummvm/gui EditTextWidget.h,1.18,1.19 ListWidget.h,1.28,1.29 browser.h,1.15,1.16 widget.h,1.37,1.38

Torbjörn Andersson eriktorbjorn at users.sourceforge.net
Wed Apr 6 08:22:10 CEST 2005


Update of /cvsroot/scummvm/scummvm/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6461

Modified Files:
	EditTextWidget.h ListWidget.h browser.h widget.h 
Log Message:
Removed unnecessary semi-colons.


Index: EditTextWidget.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/EditTextWidget.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- EditTextWidget.h	29 Jan 2005 18:04:34 -0000	1.18
+++ EditTextWidget.h	6 Apr 2005 15:21:23 -0000	1.19
@@ -40,7 +40,7 @@
 
 	virtual void handleMouseDown(int x, int y, int button, int clickCount);
 
-	virtual bool wantsFocus() { return true; };
+	virtual bool wantsFocus() { return true; }
 
 protected:
 	void drawWidget(bool hilite);

Index: ListWidget.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/ListWidget.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- ListWidget.h	27 Mar 2005 11:27:07 -0000	1.28
+++ ListWidget.h	6 Apr 2005 15:21:23 -0000	1.29
@@ -82,7 +82,7 @@
 	virtual bool handleKeyUp(uint16 ascii, int keycode, int modifiers);
 	virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
 
-	virtual bool wantsFocus() { return true; };
+	virtual bool wantsFocus() { return true; }
 
 	// Made startEditMode for SCUMM's SaveLoadChooser
 	void startEditMode();

Index: browser.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/browser.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- browser.h	1 Jan 2005 16:09:06 -0000	1.15
+++ browser.h	6 Apr 2005 15:21:32 -0000	1.16
@@ -48,7 +48,7 @@
 	virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
 #endif
 
-	const FilesystemNode	&getResult() { return _choice; };
+	const FilesystemNode	&getResult() { return _choice; }
 
 
 protected:

Index: widget.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/widget.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- widget.h	1 Jan 2005 16:09:07 -0000	1.37
+++ widget.h	6 Apr 2005 15:21:32 -0000	1.38
@@ -99,7 +99,7 @@
 	void draw();
 	void receivedFocus() { _hasFocus = true; receivedFocusWidget(); }
 	void lostFocus() { _hasFocus = false; lostFocusWidget(); }
-	virtual bool wantsFocus() { return false; };
+	virtual bool wantsFocus() { return false; }
 
 	void setFlags(int flags)	{ _flags |= flags; }
 	void clearFlags(int flags)	{ _flags &= ~flags; }





More information about the Scummvm-git-logs mailing list