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 Calendar Tools
Commits
cc9681f6
Commit
cc9681f6
authored
Jan 14, 2021
by
Laurent Montel
😁
Browse files
Remove extra ;
parent
6d7bf457
Pipeline
#47608
passed with stage
in 9 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
calendarjanitor/calendarjanitor.cpp
View file @
cc9681f6
...
...
@@ -120,7 +120,7 @@ void CalendarJanitor::onItemsFetched(bool success, const QString &errorMessage)
void
CalendarJanitor
::
onModifyFinished
(
int
changeId
,
const
Akonadi
::
Item
&
item
,
Akonadi
::
IncidenceChanger
::
ResultCode
resultCode
,
const
QString
&
errorMessage
)
{
Q_UNUSED
(
changeId
)
;
Q_UNUSED
(
changeId
)
if
(
resultCode
!=
Akonadi
::
IncidenceChanger
::
ResultCodeSuccess
)
{
print
(
i18n
(
"Error while modifying incidence: %1"
,
errorMessage
));
bailOut
();
...
...
@@ -138,7 +138,7 @@ void CalendarJanitor::onModifyFinished(int changeId, const Akonadi::Item &item,
void
CalendarJanitor
::
onDeleteFinished
(
int
changeId
,
const
QVector
<
Akonadi
::
Item
::
Id
>
&
items
,
Akonadi
::
IncidenceChanger
::
ResultCode
resultCode
,
const
QString
&
errorMessage
)
{
Q_UNUSED
(
changeId
)
;
Q_UNUSED
(
changeId
)
if
(
resultCode
!=
Akonadi
::
IncidenceChanger
::
ResultCodeSuccess
)
{
print
(
i18n
(
"Error while deleting incidence: %1"
,
errorMessage
));
bailOut
();
...
...
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