Supports # as separator for groups

This is because Windows barfs when exporting filenames with : in them.
This commit is contained in:
Daniel Collin 2014-09-14 09:38:25 +02:00
parent b7283e258e
commit 22e11ed4c0

View File

@ -52,7 +52,7 @@ static int findSeparator(const char* name)
for (i = 0; i < len; ++i)
{
if (name[i] == ':')
if (name[i] == ':' || name[i] == '#')
return i;
}