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
PIM Calendar Support
Commits
19abfa7a
Commit
19abfa7a
authored
Sep 18, 2020
by
Laurent Montel
😁
Browse files
const'ify++
parent
7137406c
Pipeline
#34712
passed with stage
in 9 minutes and 29 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/attachmenthandler.cpp
View file @
19abfa7a
...
...
@@ -56,7 +56,7 @@ public:
}
QMap
<
KJob
*
,
ReceivedInfo
>
mJobToReceivedInfo
;
QPointer
<
QWidget
>
mParent
;
QPointer
<
QWidget
>
const
mParent
;
};
AttachmentHandler
::
AttachmentHandler
(
QWidget
*
parent
)
:
QObject
(
parent
)
...
...
src/categoryconfig.cpp
View file @
19abfa7a
...
...
@@ -50,7 +50,7 @@ public:
}
QColor
mDefaultCategoryColor
;
KCoreConfigSkeleton
*
con
fig
=
nullptr
;
KCoreConfigSkeleton
*
con
st
config
;
};
QHash
<
QString
,
QColor
>
CategoryConfig
::
readColors
()
const
...
...
src/freebusymodel/freebusyitem.h
View file @
19abfa7a
...
...
@@ -48,7 +48,7 @@ Q_SIGNALS:
void
freebusyChanged
(
const
KCalendarCore
::
FreeBusy
::
Ptr
fb
);
private:
KCalendarCore
::
Attendee
mAttendee
;
const
KCalendarCore
::
Attendee
mAttendee
;
KCalendarCore
::
FreeBusy
::
Ptr
mFreeBusy
;
// This is used for the update timer
...
...
src/freebusymodel/freebusyitemmodel.cpp
View file @
19abfa7a
...
...
@@ -69,12 +69,6 @@ private:
class
CalendarSupport
::
FreeBusyItemModelPrivate
{
public:
FreeBusyItemModelPrivate
()
:
mForceDownload
(
false
)
,
mRootData
(
nullptr
)
{
}
~
FreeBusyItemModelPrivate
()
{
delete
mRootData
;
...
...
src/printing/calprinter.h
View file @
19abfa7a
...
...
@@ -73,7 +73,7 @@ private:
Akonadi
::
ETMCalendar
::
Ptr
mCalendar
;
QWidget
*
mParent
=
nullptr
;
KConfig
*
mConfig
=
nullptr
;
bool
mUniqItem
;
const
bool
mUniqItem
;
};
class
CalPrintDialog
:
public
QDialog
...
...
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