Merge pull request #494 from dubhater/patch-1

Qt: Fix assert with one-letter root folder names
This commit is contained in:
Mike Gelfand 2018-02-03 11:44:33 +03:00 committed by GitHub
commit 30a6a3244a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public:
bool hasNext() const
{
return mySlashIndex > 0;
return mySlashIndex > -1;
}
QString const& next()