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
KAlarm
Commits
826a43d9
Commit
826a43d9
authored
Dec 10, 2014
by
Laurent Montel
😁
Browse files
Make it static
parent
575e934a
Changes
2
Hide whitespace changes
Inline
Side-by-side
compatibilityattribute.cpp
View file @
826a43d9
...
...
@@ -97,7 +97,8 @@ QByteArray CompatibilityAttribute::type() const
QByteArray
CompatibilityAttribute
::
name
()
{
return
"KAlarmCompatibility"
;
static
const
QByteArray
sType
(
"KAlarmCompatibility"
);
return
sType
;
}
QByteArray
CompatibilityAttribute
::
serialized
()
const
...
...
eventattribute.cpp
View file @
826a43d9
...
...
@@ -74,7 +74,8 @@ void EventAttribute::setCommandError(KAEvent::CmdErrType err)
QByteArray
EventAttribute
::
type
()
const
{
return
"KAlarmEvent"
;
static
const
QByteArray
sType
(
"KAlarmEvent"
);
return
sType
;
}
EventAttribute
*
EventAttribute
::
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