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
libkdepim
Commits
5579215e
Commit
5579215e
authored
Nov 18, 2020
by
Laurent Montel
😁
Browse files
GIT_SILENT: pedantic
parent
24edf811
Pipeline
#41423
failed with stage
in 5 minutes and 45 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/libkdepim/progresswidget/progressdialog.cpp
View file @
5579215e
...
...
@@ -310,7 +310,7 @@ void TransactionItem::slotItemCanceled()
void
TransactionItem
::
addSubTransaction
(
ProgressItem
*
item
)
{
Q_UNUSED
(
item
)
;
Q_UNUSED
(
item
)
}
// ---------------------------------------------------------------------------
...
...
src/libkdepim/progresswidget/statusbarprogresswidget.cpp
View file @
5579215e
...
...
@@ -211,7 +211,7 @@ void StatusbarProgressWidget::slotBusyIndicator()
void
StatusbarProgressWidget
::
slotProgressItemProgress
(
ProgressItem
*
item
,
unsigned
int
value
)
{
Q_ASSERT
(
item
==
mCurrentItem
);
// the only one we should be connected to
Q_UNUSED
(
item
)
;
Q_UNUSED
(
item
)
mProgressBar
->
setValue
(
value
);
}
...
...
src/libkdepim/widgets/kcheckcombobox.cpp
View file @
5579215e
...
...
@@ -49,7 +49,7 @@ private:
void
KCheckComboBox
::
Private
::
makeInsertedItemsCheckable
(
const
QModelIndex
&
parent
,
int
start
,
int
end
)
{
Q_UNUSED
(
parent
)
;
Q_UNUSED
(
parent
)
auto
*
model
=
qobject_cast
<
QStandardItemModel
*>
(
q
->
model
());
if
(
model
)
{
for
(
int
r
=
start
;
r
<=
end
;
++
r
)
{
...
...
@@ -80,8 +80,8 @@ QString KCheckComboBox::Private::squeeze(const QString &text)
void
KCheckComboBox
::
Private
::
updateCheckedItems
(
const
QModelIndex
&
topLeft
,
const
QModelIndex
&
bottomRight
,
int
role
)
{
Q_UNUSED
(
topLeft
)
;
Q_UNUSED
(
bottomRight
)
;
Q_UNUSED
(
topLeft
)
Q_UNUSED
(
bottomRight
)
const
QStringList
items
=
q
->
checkedItems
(
role
);
QString
text
;
...
...
src/libkdepim/widgets/kwidgetlister.cpp
View file @
5579215e
...
...
@@ -185,7 +185,7 @@ void KWidgetLister::removeLastWidget()
void
KWidgetLister
::
clearWidget
(
QWidget
*
widget
)
{
Q_UNUSED
(
widget
)
;
Q_UNUSED
(
widget
)
}
QWidget
*
KWidgetLister
::
createWidget
(
QWidget
*
parent
)
...
...
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