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
PIM
Akonadi Console
Commits
a0aa0d44
Commit
a0aa0d44
authored
Jan 14, 2021
by
Laurent Montel
😁
Browse files
Remove extra ;
parent
610d622f
Pipeline
#47609
passed with stage
in 11 minutes and 31 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/agentconfigmodel.cpp
View file @
a0aa0d44
...
...
@@ -70,13 +70,13 @@ void AgentConfigModel::reload()
int
AgentConfigModel
::
columnCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
return
3
;
}
int
AgentConfigModel
::
rowCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
return
m_settings
.
size
();
}
...
...
src/debugfiltermodel.cpp
View file @
a0aa0d44
...
...
@@ -37,7 +37,7 @@ void DebugFilterModel::setSenderFilter(KCheckComboBox *senderFilter)
mSenderFilter
=
senderFilter
;
connect
(
mSenderFilter
,
&
KCheckComboBox
::
checkedItemsChanged
,
this
,
[
this
](
const
QStringList
&
_items
)
{
Q_UNUSED
(
_items
)
;
Q_UNUSED
(
_items
)
const
auto
items
=
mSenderFilter
->
checkedItems
(
DebugModel
::
IdentifierRole
);
mCheckedSenders
.
clear
();
mCheckedSenders
.
reserve
(
items
.
count
());
...
...
src/jobtrackermodel.cpp
View file @
a0aa0d44
...
...
@@ -127,7 +127,7 @@ int JobTrackerModel::rowCount(const QModelIndex &parent) const
int
JobTrackerModel
::
columnCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
return
NumColumns
;
}
...
...
src/monitorsmodel.cpp
View file @
a0aa0d44
...
...
@@ -138,7 +138,7 @@ QVariant MonitorsModel::data(const QModelIndex &index, int role) const
int
MonitorsModel
::
columnCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
return
1
;
}
...
...
src/notificationmodel.cpp
View file @
a0aa0d44
...
...
@@ -31,7 +31,7 @@ NotificationModel::~NotificationModel()
int
NotificationModel
::
columnCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
return
_ColumnCount
;
}
...
...
@@ -51,7 +51,7 @@ QModelIndex NotificationModel::index(int row, int column, const QModelIndex &par
QModelIndex
NotificationModel
::
parent
(
const
QModelIndex
&
child
)
const
{
Q_UNUSED
(
child
)
;
Q_UNUSED
(
child
)
return
{};
}
...
...
src/querydebugger.cpp
View file @
a0aa0d44
...
...
@@ -287,7 +287,7 @@ public:
int
columnCount
(
const
QModelIndex
&
parent
=
QModelIndex
())
const
override
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
return
5
;
}
...
...
@@ -787,7 +787,7 @@ void QueryDebugger::debuggerToggled(bool on)
void
QueryDebugger
::
addQuery
(
double
sequence
,
qint64
connectionId
,
qint64
timestamp
,
uint
duration
,
const
QString
&
query
,
const
QMap
<
QString
,
QVariant
>
&
values
,
int
resultsCount
,
const
QList
<
QList
<
QVariant
>
>
&
result
,
const
QString
&
error
)
{
Q_UNUSED
(
sequence
)
;
Q_UNUSED
(
sequence
)
mQueryList
->
addQuery
(
query
,
duration
);
mQueryTree
->
addQuery
(
connectionId
,
timestamp
,
duration
,
query
,
values
,
resultsCount
,
result
,
error
);
}
...
...
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