COMMON: Remove superfluous Common:: qualifiers.

This commit is contained in:
Christoph Mallon 2011-08-06 09:47:19 +02:00
parent b3997f0562
commit 84220d2ca0
32 changed files with 131 additions and 132 deletions

View file

@ -82,7 +82,7 @@ void hexdump(const byte *data, int len, int bytesPerLine, int startOffset) {
#pragma mark -
bool parseBool(const Common::String &val, bool &valAsBool) {
bool parseBool(const String &val, bool &valAsBool) {
if (val.equalsIgnoreCase("true") ||
val.equalsIgnoreCase("yes") ||
val.equals("1")) {