[Scummvm-cvs-logs] SF.net SVN: scummvm: [27008] scummvm/trunk/gui/newgui.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Tue May 29 23:35:14 CEST 2007


Revision: 27008
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27008&view=rev
Author:   fingolfin
Date:     2007-05-29 14:35:13 -0700 (Tue, 29 May 2007)

Log Message:
-----------
Fix warning caused by not handling all enum values in a switch (caused by the newly added EVENT_PREDICTIVE_DIALOG constant)

Modified Paths:
--------------
    scummvm/trunk/gui/newgui.cpp

Modified: scummvm/trunk/gui/newgui.cpp
===================================================================
--- scummvm/trunk/gui/newgui.cpp	2007-05-29 21:06:07 UTC (rev 27007)
+++ scummvm/trunk/gui/newgui.cpp	2007-05-29 21:35:13 UTC (rev 27008)
@@ -309,6 +309,8 @@
 			case Common::EVENT_SCREEN_CHANGED:
 				screenChange();
 				break;
+			default:
+				break;
 			}
 		}
 


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