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
KDE PIM Runtime
Commits
e71b8fa6
Commit
e71b8fa6
authored
Nov 11, 2021
by
Laurent Montel
😁
Browse files
Const'ify pointer + const methods
parent
f838ab3f
Pipeline
#96413
canceled with stage
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
resources/ews/ewsmodifyitemflagsjob.h
View file @
e71b8fa6
...
...
@@ -36,7 +36,7 @@ Q_SIGNALS:
void
reportPercent
(
int
progress
);
protected:
Akonadi
::
Item
::
List
mItems
;
const
Akonadi
::
Item
::
List
mItems
;
Akonadi
::
Item
::
List
mResultItems
;
EwsClient
&
mClient
;
QSet
<
QByteArray
>
mAddedFlags
;
...
...
resources/ews/ewssubscribedfoldersjob.h
View file @
e71b8fa6
...
...
@@ -21,7 +21,7 @@ public:
void
start
()
override
;
EwsId
::
List
folders
()
EwsId
::
List
folders
()
const
{
return
mFolders
;
}
...
...
resources/ews/tags/ewsakonaditagssyncjob.h
View file @
e71b8fa6
...
...
@@ -29,7 +29,7 @@ private Q_SLOTS:
void
tagWriteFinished
(
KJob
*
job
);
private:
EwsTagStore
*
mTagStore
=
nullptr
;
EwsTagStore
*
const
mTagStore
;
EwsClient
&
mClient
;
const
Akonadi
::
Collection
&
mRootCollection
;
};
...
...
resources/ews/tags/ewsglobaltagsreadjob.h
View file @
e71b8fa6
...
...
@@ -35,7 +35,7 @@ private Q_SLOTS:
void
getFolderRequestFinished
(
KJob
*
job
);
private:
EwsTagStore
*
mTagStore
=
nullptr
;
EwsTagStore
*
const
mTagStore
;
EwsClient
&
mClient
;
const
Akonadi
::
Collection
&
mRootCollection
;
Akonadi
::
Tag
::
List
mTags
;
...
...
resources/ews/tags/ewsglobaltagswritejob.h
View file @
e71b8fa6
...
...
@@ -27,7 +27,7 @@ private Q_SLOTS:
void
updateFolderRequestFinished
(
KJob
*
job
);
private:
EwsTagStore
*
mTagStore
=
nullptr
;
EwsTagStore
*
const
mTagStore
;
EwsClient
&
mClient
;
const
Akonadi
::
Collection
&
mRootCollection
;
};
...
...
Write
Preview
Markdown
is supported
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