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
KMail
Commits
503ff5e6
Commit
503ff5e6
authored
Nov 18, 2021
by
Laurent Montel
😁
Browse files
Add tooltips here
parent
18fc9213
Pipeline
#98711
passed with stage
in 13 minutes and 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
agents/followupreminderagent/followupreminderinfowidget.cpp
View file @
503ff5e6
...
...
@@ -117,9 +117,12 @@ void FollowUpReminderInfoWidget::createOrUpdateItem(FollowUpReminder::FollowUpRe
}
item
->
setInfo
(
info
);
item
->
setText
(
To
,
info
->
to
());
item
->
setToolTip
(
To
,
info
->
to
());
item
->
setText
(
Subject
,
info
->
subject
());
item
->
setToolTip
(
Subject
,
info
->
subject
());
const
QString
date
=
QLocale
().
toString
(
info
->
followUpReminderDate
());
item
->
setText
(
DeadLine
,
date
);
item
->
setToolTip
(
DeadLine
,
date
);
const
bool
answerWasReceived
=
info
->
answerWasReceived
();
item
->
setText
(
AnswerWasReceived
,
answerWasReceived
?
i18n
(
"Received"
)
:
i18n
(
"On hold"
));
item
->
setData
(
0
,
AnswerItemFound
,
answerWasReceived
);
...
...
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