Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE PIM Runtime
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
KDE PIM Runtime
Commits
bc764c77
Commit
bc764c77
authored
Dec 10, 2014
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it static
parent
4eb99cdd
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
38 additions
and
19 deletions
+38
-19
agents/invitations/incidenceattribute.cpp
agents/invitations/incidenceattribute.cpp
+2
-1
migration/knotes/notealarmattribute.cpp
migration/knotes/notealarmattribute.cpp
+2
-1
migration/knotes/notedisplayattribute.cpp
migration/knotes/notedisplayattribute.cpp
+2
-1
migration/knotes/notelockattribute.cpp
migration/knotes/notelockattribute.cpp
+2
-1
resources/dav/resource/davprotocolattribute.cpp
resources/dav/resource/davprotocolattribute.cpp
+2
-1
resources/google/calendar/defaultreminderattribute.cpp
resources/google/calendar/defaultreminderattribute.cpp
+2
-1
resources/imap/highestmodseqattribute.cpp
resources/imap/highestmodseqattribute.cpp
+2
-1
resources/imap/noinferiorsattribute.cpp
resources/imap/noinferiorsattribute.cpp
+2
-1
resources/imap/noselectattribute.cpp
resources/imap/noselectattribute.cpp
+2
-1
resources/imap/timestampattribute.cpp
resources/imap/timestampattribute.cpp
+2
-1
resources/imap/uidnextattribute.cpp
resources/imap/uidnextattribute.cpp
+2
-1
resources/imap/uidvalidityattribute.cpp
resources/imap/uidvalidityattribute.cpp
+2
-1
resources/mbox/deleteditemsattribute.cpp
resources/mbox/deleteditemsattribute.cpp
+2
-1
resources/nntp/nntpcollectionattribute.cpp
resources/nntp/nntpcollectionattribute.cpp
+2
-1
resources/shared/collectionannotationsattribute.cpp
resources/shared/collectionannotationsattribute.cpp
+2
-1
resources/shared/collectionflagsattribute.cpp
resources/shared/collectionflagsattribute.cpp
+2
-1
resources/shared/filestore/entitycompactchangeattribute.cpp
resources/shared/filestore/entitycompactchangeattribute.cpp
+2
-1
resources/shared/imapaclattribute.cpp
resources/shared/imapaclattribute.cpp
+2
-1
resources/shared/imapquotaattribute.cpp
resources/shared/imapquotaattribute.cpp
+2
-1
No files found.
agents/invitations/incidenceattribute.cpp
View file @
bc764c77
...
...
@@ -45,7 +45,8 @@ IncidenceAttribute::~IncidenceAttribute()
QByteArray
IncidenceAttribute
::
type
()
const
{
return
"incidence"
;
static
const
QByteArray
sType
(
"incidence"
);
return
sType
;
}
Attribute
*
IncidenceAttribute
::
clone
()
const
...
...
migration/knotes/notealarmattribute.cpp
View file @
bc764c77
...
...
@@ -53,7 +53,8 @@ QByteArray NoteAlarmAttribute::serialized() const
QByteArray
NoteAlarmAttribute
::
type
()
const
{
return
"NoteAlarmAttribute"
;
static
const
QByteArray
sType
(
"NoteAlarmAttribute"
);
return
sType
;
}
void
NoteAlarmAttribute
::
setDateTime
(
const
KDateTime
&
dateTime
)
...
...
migration/knotes/notedisplayattribute.cpp
View file @
bc764c77
...
...
@@ -111,7 +111,8 @@ QByteArray NoteDisplayAttribute::serialized() const
QByteArray
NoteDisplayAttribute
::
type
()
const
{
return
"NoteDisplayAttribute"
;
static
const
QByteArray
sType
(
"NoteDisplayAttribute"
);
return
sType
;
}
void
NoteDisplayAttribute
::
setBackgroundColor
(
const
QColor
&
color
)
...
...
migration/knotes/notelockattribute.cpp
View file @
bc764c77
...
...
@@ -52,7 +52,8 @@ QByteArray NoteLockAttribute::serialized() const
QByteArray
NoteLockAttribute
::
type
()
const
{
//We can't change this name!
return
"KJotsLockAttribute"
;
static
const
QByteArray
sType
(
"KJotsLockAttribute"
);
return
sType
;
}
resources/dav/resource/davprotocolattribute.cpp
View file @
bc764c77
...
...
@@ -40,7 +40,8 @@ Akonadi::Attribute* DavProtocolAttribute::clone() const
QByteArray
DavProtocolAttribute
::
type
()
const
{
return
"davprotocol"
;
static
const
QByteArray
sType
(
"davprotocol"
);
return
sType
;
}
QByteArray
DavProtocolAttribute
::
serialized
()
const
...
...
resources/google/calendar/defaultreminderattribute.cpp
View file @
bc764c77
...
...
@@ -109,6 +109,7 @@ KCalCore::Alarm::List DefaultReminderAttribute::alarms( KCalCore::Incidence *inc
QByteArray
DefaultReminderAttribute
::
type
()
const
{
return
"defaultReminders"
;
static
const
QByteArray
sType
(
"defaultReminders"
);
return
sType
;
}
resources/imap/highestmodseqattribute.cpp
View file @
bc764c77
...
...
@@ -44,7 +44,8 @@ Akonadi::Attribute* HighestModSeqAttribute::clone() const
QByteArray
HighestModSeqAttribute
::
type
()
const
{
return
"highestmodseq"
;
static
const
QByteArray
sType
(
"highestmodseq"
);
return
sType
;
}
void
HighestModSeqAttribute
::
deserialize
(
const
QByteArray
&
data
)
...
...
resources/imap/noinferiorsattribute.cpp
View file @
bc764c77
...
...
@@ -40,7 +40,8 @@ bool NoInferiorsAttribute::noInferiors() const
QByteArray
NoInferiorsAttribute
::
type
()
const
{
return
"noinferiors"
;
static
const
QByteArray
sType
(
"noinferiors"
);
return
sType
;
}
Akonadi
::
Attribute
*
NoInferiorsAttribute
::
clone
()
const
...
...
resources/imap/noselectattribute.cpp
View file @
bc764c77
...
...
@@ -40,7 +40,8 @@ bool NoSelectAttribute::noSelect() const
QByteArray
NoSelectAttribute
::
type
()
const
{
return
"noselect"
;
static
const
QByteArray
sType
(
"noselect"
);
return
sType
;
}
Akonadi
::
Attribute
*
NoSelectAttribute
::
clone
()
const
...
...
resources/imap/timestampattribute.cpp
View file @
bc764c77
...
...
@@ -42,7 +42,8 @@ uint TimestampAttribute::timestamp() const
QByteArray
TimestampAttribute
::
type
()
const
{
return
"timestamp"
;
static
const
QByteArray
sType
(
"timestamp"
);
return
sType
;
}
Akonadi
::
Attribute
*
TimestampAttribute
::
clone
()
const
...
...
resources/imap/uidnextattribute.cpp
View file @
bc764c77
...
...
@@ -40,7 +40,8 @@ int UidNextAttribute::uidNext() const
QByteArray
UidNextAttribute
::
type
()
const
{
return
"uidnext"
;
static
const
QByteArray
sType
(
"uidnext"
);
return
sType
;
}
Akonadi
::
Attribute
*
UidNextAttribute
::
clone
()
const
...
...
resources/imap/uidvalidityattribute.cpp
View file @
bc764c77
...
...
@@ -40,7 +40,8 @@ int UidValidityAttribute::uidValidity() const
QByteArray
UidValidityAttribute
::
type
()
const
{
return
"uidvalidity"
;
static
const
QByteArray
sType
(
"uidvalidity"
);
return
sType
;
}
Akonadi
::
Attribute
*
UidValidityAttribute
::
clone
()
const
...
...
resources/mbox/deleteditemsattribute.cpp
View file @
bc764c77
...
...
@@ -92,5 +92,6 @@ int DeletedItemsAttribute::offsetCount() const
QByteArray
DeletedItemsAttribute
::
type
()
const
{
return
"DeletedMboxItems"
;
static
const
QByteArray
sType
(
"DeletedMboxItems"
);
return
sType
;
}
resources/nntp/nntpcollectionattribute.cpp
View file @
bc764c77
...
...
@@ -29,7 +29,8 @@ NntpCollectionAttribute::NntpCollectionAttribute()
QByteArray
NntpCollectionAttribute
::
type
()
const
{
return
"NNTP"
;
static
const
QByteArray
sType
(
"NNTP"
);
return
sType
;
}
NntpCollectionAttribute
*
NntpCollectionAttribute
::
clone
()
const
...
...
resources/shared/collectionannotationsattribute.cpp
View file @
bc764c77
...
...
@@ -46,7 +46,8 @@ QMap<QByteArray, QByteArray> CollectionAnnotationsAttribute::annotations() const
QByteArray
CollectionAnnotationsAttribute
::
type
()
const
{
return
"collectionannotations"
;
static
const
QByteArray
sType
(
"collectionannotations"
);
return
sType
;
}
Akonadi
::
Attribute
*
CollectionAnnotationsAttribute
::
clone
()
const
...
...
resources/shared/collectionflagsattribute.cpp
View file @
bc764c77
...
...
@@ -41,7 +41,8 @@ QList<QByteArray> CollectionFlagsAttribute::flags() const
QByteArray
CollectionFlagsAttribute
::
type
()
const
{
return
"collectionflags"
;
static
const
QByteArray
sType
(
"collectionflags"
);
return
sType
;
}
Akonadi
::
Attribute
*
CollectionFlagsAttribute
::
clone
()
const
...
...
resources/shared/filestore/entitycompactchangeattribute.cpp
View file @
bc764c77
...
...
@@ -81,7 +81,8 @@ QString FileStore::EntityCompactChangeAttribute::remoteRevision() const
QByteArray
FileStore
::
EntityCompactChangeAttribute
::
type
()
const
{
return
"ENTITYCOMPACTCHANGE"
;
static
const
QByteArray
sType
(
"ENTITYCOMPACTCHANGE"
);
return
sType
;
}
FileStore
::
EntityCompactChangeAttribute
*
FileStore
::
EntityCompactChangeAttribute
::
clone
()
const
...
...
resources/shared/imapaclattribute.cpp
View file @
bc764c77
...
...
@@ -51,7 +51,8 @@ QMap<QByteArray, KIMAP::Acl::Rights> ImapAclAttribute::oldRights() const
QByteArray
ImapAclAttribute
::
type
()
const
{
return
"imapacl"
;
static
const
QByteArray
sType
(
"imapacl"
);
return
sType
;
}
Akonadi
::
Attribute
*
ImapAclAttribute
::
clone
()
const
...
...
resources/shared/imapquotaattribute.cpp
View file @
bc764c77
...
...
@@ -69,7 +69,8 @@ QList< QMap<QByteArray, qint64> > Akonadi::ImapQuotaAttribute::usages() const
QByteArray
ImapQuotaAttribute
::
type
()
const
{
return
"imapquota"
;
static
const
QByteArray
sType
(
"imapquota"
);
return
sType
;
}
Akonadi
::
Attribute
*
ImapQuotaAttribute
::
clone
()
const
...
...
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