We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f774af commit d7079b7Copy full SHA for d7079b7
src/core/scan.cpp
@@ -122,6 +122,7 @@ bool QmlScanner::scanQmlFile(const QString& path) {
122
while (importCursor != line.length()) {
123
auto c = line.at(importCursor);
124
if (c == '.') c = '/';
125
+ else if (c == ' ') break;
126
else if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9')
127
|| c == '_')
128
{
0 commit comments