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
Network
Konversation
Commits
68d4efb0
Commit
68d4efb0
authored
Dec 18, 2021
by
Luke Dashjr
Committed by
Heiko Becker
Dec 18, 2021
Browse files
Bugfix: Correct behaviour of "case sensitive" tab completion option
Fixes regression from
5dfb6583
.
BUG:442109
parent
806312bb
Pipeline
#111942
passed with stage
in 2 minutes and 34 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/irc/channel.cpp
View file @
68d4efb0
...
...
@@ -2822,7 +2822,7 @@ QString NickList::completeNick(const QString& pattern, bool& complete, QStringLi
const
QRegularExpression
regexp
(
prefix
+
QRegularExpression
::
escape
(
pattern
),
caseSensitive
?
QRegularExpression
::
CaseInsensitive
Option
:
QRegularExpression
::
NoPattern
Option
);
caseSensitive
?
QRegularExpression
::
NoPattern
Option
:
QRegularExpression
::
CaseInsensitive
Option
);
for
(
Nick
*
nick
:
*
this
)
{
newNick
=
nick
->
getChannelNick
()
->
getNickname
();
...
...
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