"Foo\tBar - Baz" should be parsed as title = "Foo", subtitle = "Bar - Baz", not title = "Foo\tBar", subtitle = "- Baz"

This commit is contained in:
Steve Checkoway
2006-10-31 10:24:24 +00:00
parent 708fa0166e
commit b5e66c2712
+1 -1
View File
@@ -18,7 +18,7 @@ bool NotesLoader::Loadable( const RString &sPath )
void NotesLoader::GetMainAndSubTitlesFromFullTitle( const RString &sFullTitle, RString &sMainTitleOut, RString &sSubTitleOut )
{
const RString sLeftSeps[] = { " -", " ~", " (", " [", "\t" };
const RString sLeftSeps[] = { "\t", " -", " ~", " (", " [" };
for( unsigned i=0; i<ARRAYLEN(sLeftSeps); i++ )
{