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
KMail
Commits
ec99ee76
Commit
ec99ee76
authored
Aug 26, 2021
by
Laurent Montel
😁
Browse files
Use auto
parent
f17aace4
Pipeline
#76619
passed with stage
in 23 minutes and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kmmainwidget.cpp
View file @
ec99ee76
...
...
@@ -1391,7 +1391,7 @@ void KMMainWidget::newFromTemplate(const Akonadi::Item &msg)
if
(
!
msg
.
isValid
())
{
return
;
}
KMCommand
*
command
=
new
KMUseTemplateCommand
(
this
,
msg
);
auto
command
=
new
KMUseTemplateCommand
(
this
,
msg
);
command
->
start
();
}
...
...
@@ -1770,7 +1770,7 @@ void KMMainWidget::copyMessageSelected(const Akonadi::Item::List &selectMsg, con
return
;
}
// And stuff them into a KMCopyCommand :)
KMCommand
*
command
=
new
KMCopyCommand
(
dest
,
selectMsg
);
auto
command
=
new
KMCopyCommand
(
dest
,
selectMsg
);
QObject
::
connect
(
command
,
&
KMCommand
::
completed
,
this
,
&
KMMainWidget
::
slotCopyMessagesCompleted
);
command
->
start
();
showMessageActivities
(
i18n
(
"Copying messages..."
));
...
...
@@ -1928,7 +1928,7 @@ void KMMainWidget::toggleMessageSetTag(const Akonadi::Item::List &select, const
if
(
select
.
isEmpty
())
{
return
;
}
KMCommand
*
command
=
new
KMSetTagCommand
(
Akonadi
::
Tag
::
List
()
<<
tag
,
select
,
KMSetTagCommand
::
Toggle
);
auto
command
=
new
KMSetTagCommand
(
Akonadi
::
Tag
::
List
()
<<
tag
,
select
,
KMSetTagCommand
::
Toggle
);
command
->
start
();
}
...
...
@@ -1943,7 +1943,7 @@ void KMMainWidget::slotSelectMoreMessageTagList()
dlg
->
setActionCollection
(
QList
<
KActionCollection
*>
{
actionCollection
()});
if
(
dlg
->
exec
())
{
const
Akonadi
::
Tag
::
List
lst
=
dlg
->
selectedTag
();
KMCommand
*
command
=
new
KMSetTagCommand
(
lst
,
selectedMessages
,
KMSetTagCommand
::
CleanExistingAndAddNew
);
auto
command
=
new
KMSetTagCommand
(
lst
,
selectedMessages
,
KMSetTagCommand
::
CleanExistingAndAddNew
);
command
->
start
();
}
delete
dlg
;
...
...
@@ -1973,7 +1973,7 @@ void KMMainWidget::refreshMessageListSelection()
// We should probably move everything there....
void
KMMainWidget
::
setMessageSetStatus
(
const
Akonadi
::
Item
::
List
&
select
,
Akonadi
::
MessageStatus
status
,
bool
toggle
)
{
KMCommand
*
command
=
new
KMSetStatusCommand
(
status
,
select
,
toggle
);
auto
command
=
new
KMSetStatusCommand
(
status
,
select
,
toggle
);
command
->
start
();
}
...
...
@@ -2030,7 +2030,7 @@ void KMMainWidget::slotRedirectMessage()
return
;
}
KMCommand
*
command
=
new
KMRedirectCommand
(
this
,
selectedMessages
);
auto
command
=
new
KMRedirectCommand
(
this
,
selectedMessages
);
command
->
start
();
}
...
...
@@ -2060,7 +2060,7 @@ void KMMainWidget::slotCustomReplyToMsg(const QString &tmpl)
qCDebug
(
KMAIL_LOG
)
<<
"Reply with template:"
<<
tmpl
;
KMCommand
*
command
=
new
KMReplyCommand
(
this
,
msg
,
MessageComposer
::
ReplySmart
,
text
,
false
,
tmpl
);
auto
command
=
new
KMReplyCommand
(
this
,
msg
,
MessageComposer
::
ReplySmart
,
text
,
false
,
tmpl
);
command
->
start
();
}
...
...
@@ -2572,12 +2572,12 @@ void KMMainWidget::slotMessageStatusChangeRequest(const Akonadi::Item &item, con
}
if
(
clear
.
toQInt32
()
!=
Akonadi
::
MessageStatus
().
toQInt32
())
{
KMCommand
*
command
=
new
KMSetStatusCommand
(
clear
,
Akonadi
::
Item
::
List
()
<<
item
,
true
);
auto
command
=
new
KMSetStatusCommand
(
clear
,
Akonadi
::
Item
::
List
()
<<
item
,
true
);
command
->
start
();
}
if
(
set
.
toQInt32
()
!=
Akonadi
::
MessageStatus
().
toQInt32
())
{
KMCommand
*
command
=
new
KMSetStatusCommand
(
set
,
Akonadi
::
Item
::
List
()
<<
item
,
false
);
auto
command
=
new
KMSetStatusCommand
(
set
,
Akonadi
::
Item
::
List
()
<<
item
,
false
);
command
->
start
();
}
}
...
...
@@ -4701,7 +4701,7 @@ void KMMainWidget::slotRedirectCurrentMessage()
if
(
!
currentItem
.
hasPayload
<
KMime
::
Message
::
Ptr
>
())
{
return
;
}
KMCommand
*
command
=
new
KMRedirectCommand
(
this
,
currentItem
);
auto
command
=
new
KMRedirectCommand
(
this
,
currentItem
);
command
->
start
();
}
}
...
...
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