From f1fef4c70cd7b55ab8112e95c3dff4cd7f6dea60 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Tue, 17 Mar 2020 13:49:26 +0100 Subject: [PATCH] const'ify --- src/editor/kmcomposerwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/kmcomposerwin.cpp b/src/editor/kmcomposerwin.cpp index 9af27a081..38e80026e 100644 --- a/src/editor/kmcomposerwin.cpp +++ b/src/editor/kmcomposerwin.cpp @@ -1920,7 +1920,7 @@ MessageComposer::ComposerViewBase::MissingAttachment KMComposerWin::userForgotAt } mComposerBase->setSubject(subject()); //be sure the composer knows the subject - MessageComposer::ComposerViewBase::MissingAttachment missingAttachments = mComposerBase->checkForMissingAttachments(KMailSettings::self()->attachmentKeywords()); + const MessageComposer::ComposerViewBase::MissingAttachment missingAttachments = mComposerBase->checkForMissingAttachments(KMailSettings::self()->attachmentKeywords()); return missingAttachments; }