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
Unmaintained
KDE Pim
Commits
6b96a33b
Commit
6b96a33b
authored
Mar 03, 2014
by
Laurent Montel
😁
Browse files
Fix Bug 331317 - Feature request - Create Calendar event from E-Mail
FIXED-IN: 4.14 BUG: 331317
parent
4ddb6bca
Changes
1
Hide whitespace changes
Inline
Side-by-side
messageviewer/widgets/eventedit.cpp
View file @
6b96a33b
...
...
@@ -96,6 +96,10 @@ EventEdit::EventEdit(QWidget *parent)
mStartDateTimeEdit
=
new
KDateTimeEdit
;
mStartDateTimeEdit
->
setObjectName
(
QLatin1String
(
"startdatetimeedit"
));
mStartDateTimeEdit
->
setDateTime
(
currentDateTime
);
#ifndef QT_NO_ACCESSIBILITY
mStartDateTimeEdit
->
setAccessibleDescription
(
i18n
(
"Select start time for event."
)
);
#endif
hbox
->
addWidget
(
mStartDateTimeEdit
);
...
...
@@ -104,6 +108,9 @@ EventEdit::EventEdit(QWidget *parent)
mEndDateTimeEdit
=
new
KDateTimeEdit
;
mEndDateTimeEdit
->
setObjectName
(
QLatin1String
(
"enddatetimeedit"
));
mEndDateTimeEdit
->
setDateTime
(
currentDateTime
.
addSecs
(
3600
));
#ifndef QT_NO_ACCESSIBILITY
mEndDateTimeEdit
->
setAccessibleDescription
(
i18n
(
"Select end time for event."
)
);
#endif
hbox
->
addWidget
(
mEndDateTimeEdit
);
readConfig
();
...
...
Write
Preview
Supports
Markdown
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