Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PimCommon
Commits
d1a20b61
Commit
d1a20b61
authored
Sep 28, 2021
by
Laurent Montel
Browse files
Allow to complete with case insensitive
parent
6e933543
Pipeline
#83284
passed with stage
in 12 minutes and 35 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/pimcommon/widgets/lineeditwithcompleterng.cpp
View file @
d1a20b61
...
...
@@ -18,6 +18,7 @@ LineEditWithCompleterNg::LineEditWithCompleterNg(QWidget *parent)
{
auto
completer
=
new
QCompleter
(
this
);
mCompleterListModel
=
new
QStringListModel
(
this
);
completer
->
setCaseSensitivity
(
Qt
::
CaseInsensitive
);
completer
->
setModel
(
mCompleterListModel
);
setCompleter
(
completer
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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