[Scummvm-cvs-logs] SF.net SVN: scummvm:[35053] scummvm/trunk/engines/parallaction

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Fri Nov 14 13:13:59 CET 2008


Revision: 35053
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35053&view=rev
Author:   peres001
Date:     2008-11-14 12:13:59 +0000 (Fri, 14 Nov 2008)

Log Message:
-----------
Removed unused parameter.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/parser.cpp
    scummvm/trunk/engines/parallaction/parser.h

Modified: scummvm/trunk/engines/parallaction/parser.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/parser.cpp	2008-11-14 09:45:42 UTC (rev 35052)
+++ scummvm/trunk/engines/parallaction/parser.cpp	2008-11-14 12:13:59 UTC (rev 35053)
@@ -137,7 +137,7 @@
 //
 //	The routine returns the unparsed portion of the input string 's'.
 //
-char *Script::parseNextToken(char *s, char *tok, uint16 count, const char *brk, bool ignoreQuotes) {
+char *Script::parseNextToken(char *s, char *tok, uint16 count, const char *brk) {
 
 	enum STATES { NORMAL, QUOTED };
 

Modified: scummvm/trunk/engines/parallaction/parser.h
===================================================================
--- scummvm/trunk/engines/parallaction/parser.h	2008-11-14 09:45:42 UTC (rev 35052)
+++ scummvm/trunk/engines/parallaction/parser.h	2008-11-14 12:13:59 UTC (rev 35053)
@@ -44,7 +44,7 @@
 	uint	_line;				// for debug messages
 
 	void clearTokens();
-	char *parseNextToken(char *s, char *tok, uint16 count, const char *brk, bool ignoreQuotes = false);
+	char *parseNextToken(char *s, char *tok, uint16 count, const char *brk);
 	char *readLineIntern(char *buf, size_t bufSize);
 
 public:


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