Skip to content
GitLab
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
b0e24d87
Commit
b0e24d87
authored
Sep 30, 2019
by
David Jarvie
Browse files
Fix dumpDebug()
parent
9b785980
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/kaevent.cpp
View file @
b0e24d87
...
...
@@ -3936,7 +3936,12 @@ void KAEventPrivate::dumpDebug() const
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mTemplateAfterTime:"
<<
mTemplateAfterTime
;
}
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mText:"
<<
mText
;
if
(
mActionSubType
==
KAEvent
::
MESSAGE
||
mActionSubType
==
KAEvent
::
FILE
)
{
if
(
mActionSubType
==
KAEvent
::
MESSAGE
||
mActionSubType
==
KAEvent
::
FILE
||
(
mActionSubType
==
KAEvent
::
COMMAND
&&
mCommandDisplay
))
{
if
(
mCommandDisplay
)
{
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mCommandScript:"
<<
mCommandScript
;
}
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mBgColour:"
<<
mBgColour
.
name
();
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mFgColour:"
<<
mFgColour
.
name
();
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mUseDefaultFont:"
<<
mUseDefaultFont
;
...
...
@@ -4001,7 +4006,8 @@ void KAEventPrivate::dumpDebug() const
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mReminderMinutes:"
<<
mReminderMinutes
;
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mReminderActive:"
<<
(
mReminderActive
==
ACTIVE_REMINDER
?
"active"
:
mReminderActive
==
HIDDEN_REMINDER
?
"hidden"
:
"no"
);
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mReminderOnceOnly:"
<<
mReminderOnceOnly
;
}
else
if
(
mDeferral
>
0
)
{
}
if
(
mDeferral
!=
NO_DEFERRAL
)
{
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mDeferral:"
<<
(
mDeferral
==
NORMAL_DEFERRAL
?
"normal"
:
"reminder"
);
qCDebug
(
KALARMCAL_LOG
)
<<
"-- mDeferralTime:"
<<
mDeferralTime
.
toString
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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