[Scummvm-cvs-logs] SF.net SVN: scummvm: [25534] scummvm/trunk

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Mon Feb 12 20:47:43 CET 2007


Revision: 25534
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25534&view=rev
Author:   peres001
Date:     2007-02-12 11:47:42 -0800 (Mon, 12 Feb 2007)

Log Message:
-----------
removed warnings

Modified Paths:
--------------
    scummvm/trunk/engines/engine.cpp
    scummvm/trunk/gui/object.h

Modified: scummvm/trunk/engines/engine.cpp
===================================================================
--- scummvm/trunk/engines/engine.cpp	2007-02-12 19:42:28 UTC (rev 25533)
+++ scummvm/trunk/engines/engine.cpp	2007-02-12 19:47:42 UTC (rev 25534)
@@ -42,8 +42,8 @@
 		_mixer(_system->getMixer()),
 		_timer(_system->getTimerManager()),
 		_saveFileMan(_system->getSavefileManager()),
-		_gameDataPath(ConfMan.get("path")),
-		_targetName(ConfMan.getActiveDomainName()) {
+		_targetName(ConfMan.getActiveDomainName()),
+		_gameDataPath(ConfMan.get("path")) {
 
 	g_engine = this;
 	_autosavePeriod = ConfMan.getInt("autosave_period");
@@ -88,7 +88,7 @@
 	// settings: Via the config file, via the command line, and via in-game
 	// hotkeys.
 	// Any global or command line settings already have been applied at the time
-	// we get here. Hence we only do something 
+	// we get here. Hence we only do something
 
 	// (De)activate aspect-ratio correction as determined by the config settings
 	if (gameDomain && gameDomain->contains("aspect_ratio"))

Modified: scummvm/trunk/gui/object.h
===================================================================
--- scummvm/trunk/gui/object.h	2007-02-12 19:42:28 UTC (rev 25533)
+++ scummvm/trunk/gui/object.h	2007-02-12 19:47:42 UTC (rev 25534)
@@ -64,7 +64,7 @@
 	Widget		*_firstWidget;
 
 public:
-	GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _firstWidget(0), _name("") { }
+	GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _name(""), _firstWidget(0)  { }
 	GuiObject(const Common::String &name);
 
 	virtual int16	getAbsX() const		{ return _x; }


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