Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
5bc97eb1
Commit
5bc97eb1
authored
Mar 11, 2009
by
Oswald Buddenhagen
Browse files
compile without ascii cast (to be in sync with qt)
parent
9f51e3b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/proparser/profileevaluator.cpp
View file @
5bc97eb1
...
...
@@ -1847,7 +1847,7 @@ bool ProFileEvaluator::Private::evaluateConditionalFunction(const QString &funct
dirstr
=
file
.
left
(
slsh
+
1
);
file
=
file
.
right
(
file
.
length
()
-
slsh
-
1
);
}
if
(
file
.
contains
(
'*'
)
||
file
.
contains
(
'?'
))
if
(
file
.
contains
(
QLatin1Char
(
'*'
)
)
||
file
.
contains
(
QLatin1Char
(
'?'
))
)
cond
=
QDir
(
dirstr
).
entryList
(
QStringList
(
file
)).
count
();
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment