Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Tobias Hunger
qt-creator
Commits
5bc97eb1
Commit
5bc97eb1
authored
Mar 11, 2009
by
Oswald Buddenhagen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compile without ascii cast (to be in sync with qt)
parent
9f51e3b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/shared/proparser/profileevaluator.cpp
src/shared/proparser/profileevaluator.cpp
+1
-1
No files found.
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
Markdown
is supported
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