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
Marco Bubke
flatpak-qt-creator
Commits
cc9b6071
Commit
cc9b6071
authored
Feb 25, 2010
by
Friedemann Kleint
Browse files
Fix locator filter order.
parent
ddaa9dca
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/locator/locatorplugin.cpp
View file @
cc9b6071
...
...
@@ -68,6 +68,8 @@ namespace {
{
if
(
first
->
priority
()
<
second
->
priority
())
return
true
;
if
(
first
->
priority
()
>
second
->
priority
())
return
false
;
if
(
first
->
id
().
compare
(
second
->
id
(),
Qt
::
CaseInsensitive
)
<
0
)
return
true
;
return
false
;
...
...
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