[Scummvm-cvs-logs] SF.net SVN: scummvm:[35130] scummvm/trunk/engines/agi/sound.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Thu Nov 20 14:50:26 CET 2008


Revision: 35130
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35130&view=rev
Author:   fingolfin
Date:     2008-11-20 13:50:26 +0000 (Thu, 20 Nov 2008)

Log Message:
-----------
AGI: fsnodeNameEqualsIgnoreCase and FSNode usage should be replaced by SearchMan

Modified Paths:
--------------
    scummvm/trunk/engines/agi/sound.cpp

Modified: scummvm/trunk/engines/agi/sound.cpp
===================================================================
--- scummvm/trunk/engines/agi/sound.cpp	2008-11-20 13:49:53 UTC (rev 35129)
+++ scummvm/trunk/engines/agi/sound.cpp	2008-11-20 13:50:26 UTC (rev 35130)
@@ -23,8 +23,6 @@
  *
  */
 
-
-
 #include "common/md5.h"
 #include "common/config-manager.h"
 #include "common/fs.h"
@@ -1115,6 +1113,7 @@
  * one of the strings in a list of strings. Can be used e.g. with find_if().
  */
 struct fsnodeNameEqualsIgnoreCase : public Common::UnaryFunction<const Common::FSNode&, bool> {
+// FIXME: This should be replaced; use SearchMan instead
 	fsnodeNameEqualsIgnoreCase(const Common::StringList &str) : _str(str) {}
 	fsnodeNameEqualsIgnoreCase(const Common::String str) { _str.push_back(str); }
 	bool operator()(const Common::FSNode &param) const {


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