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
System
KSystemLog
Commits
60929a88
Commit
60929a88
authored
Sep 26, 2021
by
Laurent Montel
😁
Browse files
Remove qoverload here (as we don't use deprecated method)
parent
ca438d05
Pipeline
#82755
passed with stage
in 10 minutes and 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/lib/logViewFilterWidget.cpp
View file @
60929a88
...
...
@@ -174,7 +174,7 @@ void LogViewFilterWidget::initSearchListFilter()
mFilterList
->
setSizeAdjustPolicy
(
QComboBox
::
AdjustToContents
);
connect
(
mFilterList
,
SIGNAL
(
activated
(
int
)),
mFilterLine
,
SLOT
(
setFocus
()));
connect
(
mFilterList
,
qOverload
<
int
>
(
&
QComboBox
::
activated
)
,
this
,
&
LogViewFilterWidget
::
changeColumnFilter
);
connect
(
mFilterList
,
&
QComboBox
::
activated
,
this
,
&
LogViewFilterWidget
::
changeColumnFilter
);
connect
(
mFilterList
,
SIGNAL
(
activated
(
int
)),
mFilterLine
,
SLOT
(
updateSearch
()));
}
...
...
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