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
3c810b1f
Commit
3c810b1f
authored
Feb 21, 2021
by
Laurent Montel
😁
Browse files
Use static_cast
parent
d7c30c94
Pipeline
#51763
passed with stage
in 25 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/editor/kmcomposerwin.cpp
View file @
3c810b1f
...
...
@@ -3358,7 +3358,7 @@ void KMComposerWin::setFocusToSubject()
void
KMComposerWin
::
slotCompletionModeChanged
(
KCompletion
::
CompletionMode
mode
)
{
KMailSettings
::
self
()
->
setCompletionMode
(
(
int
)
mode
);
KMailSettings
::
self
()
->
setCompletionMode
(
static_cast
<
int
>
(
mode
)
)
;
// sync all the lineedits to the same completion mode
mEdtFrom
->
setCompletionMode
(
mode
);
...
...
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