ui: tutorial adjustments

* adjusted the start of the tutorial to work with the "overview" filter.
* fixes some spelling errors in the tutorial.
* tabs can be encoded by "\\t" in the project description.
This commit is contained in:
malte_langkabel
2016-02-16 13:25:03 +01:00
parent d04cf6316b
commit b3df8fb825
6 changed files with 28 additions and 21 deletions
@@ -517,8 +517,9 @@ std::vector<std::string> CodeController::getProjectDescription(TokenLocationFile
{
std::string line = "\t" + lines[i];
size_t pos = 0;
line = utility::replace(line, "\\t", "\t");
size_t pos = 0;
while (pos != std::string::npos)
{
size_t posA = line.find('[', pos);