From 23a0f5318c50cdf3dce19e4de0c98fb5ae1c2618 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 7 Aug 2011 11:39:54 +0200 Subject: JANITORIAL: Remove trailing empty lines. --- common/archive.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'common/archive.cpp') diff --git a/common/archive.cpp b/common/archive.cpp index 102d7aaa3f..ad5e1a8302 100644 --- a/common/archive.cpp +++ b/common/archive.cpp @@ -288,4 +288,3 @@ void SearchManager::clear() { DECLARE_SINGLETON(SearchManager); } // namespace Common - -- cgit v1.2.3 From 84220d2ca05707f22a0242b1745caf0b657237a3 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sat, 6 Aug 2011 09:47:19 +0200 Subject: COMMON: Remove superfluous Common:: qualifiers. --- common/archive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/archive.cpp') diff --git a/common/archive.cpp b/common/archive.cpp index ad5e1a8302..954de8bcaa 100644 --- a/common/archive.cpp +++ b/common/archive.cpp @@ -147,7 +147,7 @@ void SearchSet::addSubDirectoriesMatching(const FSNode &directory, String origPa for (FSList::const_iterator i = subDirs.begin(); i != subDirs.end(); ++i) { String name = i->getName(); - if (Common::matchString(name.c_str(), pattern.c_str(), ignoreCase)) { + if (matchString(name.c_str(), pattern.c_str(), ignoreCase)) { matchIter = multipleMatches.find(name); if (matchIter == multipleMatches.end()) { multipleMatches[name] = true; -- cgit v1.2.3