Fixed #2169 (Inline suppression does not work unless filename is given)

This commit is contained in:
Daniel Marjamäki 2010-11-08 18:53:48 +01:00
parent 21ec772e31
commit 6a4f70e496
1 changed files with 2 additions and 1 deletions

View File

@ -125,7 +125,8 @@ void FileListerWin32::recursiveAddFiles(std::vector<std::string> &filenames, con
break;
default:
oss << "\\*";
bdir << cleanedPath << '\\';
if (cleanedPath != ".")
bdir << cleanedPath << '\\';
}
}
else