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
fd6a0cc0
Commit
fd6a0cc0
authored
Aug 30, 2021
by
Laurent Montel
😁
Browse files
Use directly qOverload (as we depend against c++17)
parent
c88b143c
Pipeline
#77333
passed with stage
in 8 minutes and 54 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/lib/logViewFilterWidget.cpp
View file @
fd6a0cc0
...
...
@@ -174,7 +174,7 @@ void LogViewFilterWidget::initSearchListFilter()
mFilterList
->
setSizeAdjustPolicy
(
QComboBox
::
AdjustToContents
);
connect
(
mFilterList
,
SIGNAL
(
activated
(
int
)),
mFilterLine
,
SLOT
(
setFocus
()));
connect
(
mFilterList
,
Q
Overload
<
int
>
::
of
(
&
QComboBox
::
activated
),
this
,
&
LogViewFilterWidget
::
changeColumnFilter
);
connect
(
mFilterList
,
q
Overload
<
int
>
(
&
QComboBox
::
activated
),
this
,
&
LogViewFilterWidget
::
changeColumnFilter
);
connect
(
mFilterList
,
SIGNAL
(
activated
(
int
)),
mFilterLine
,
SLOT
(
updateSearch
()));
}
...
...
src/modes/journald/journaldNetworkAnalyzer.cpp
View file @
fd6a0cc0
...
...
@@ -287,7 +287,7 @@ void JournaldNetworkAnalyzer::sendRequest(RequestType requestType)
mReply
=
mNetworkManager
.
get
(
request
);
connect
(
mReply
,
&
QNetworkReply
::
finished
,
this
,
&
JournaldNetworkAnalyzer
::
httpFinished
);
connect
(
mReply
,
&
QNetworkReply
::
readyRead
,
this
,
&
JournaldNetworkAnalyzer
::
httpReadyRead
);
connect
(
mReply
,
Q
Overload
<
QNetworkReply
::
NetworkError
>
::
of
(
&
QNetworkReply
::
errorOccurred
),
this
,
&
JournaldNetworkAnalyzer
::
httpError
);
connect
(
mReply
,
q
Overload
<
QNetworkReply
::
NetworkError
>
(
&
QNetworkReply
::
errorOccurred
),
this
,
&
JournaldNetworkAnalyzer
::
httpError
);
}
void
JournaldNetworkAnalyzer
::
updateStatus
(
const
QString
&
status
)
...
...
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