WSL/SLF GitLab Repository
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
snow-models
inishell
Commits
3d1b0a34
Commit
3d1b0a34
authored
Aug 12, 2020
by
Michael Reisecker
Browse files
Fix a missing const
parent
beaf2d2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/gui_elements/Datepicker.cc
View file @
3d1b0a34
...
...
@@ -103,7 +103,7 @@ Datepicker::~Datepicker()
*/
void
Datepicker
::
setOptions
(
const
QDomNode
&
options
)
{
QString
user_date_format
=
options
.
toElement
().
attribute
(
"format"
);
const
QString
user_date_format
=
options
.
toElement
().
attribute
(
"format"
);
if
(
!
user_date_format
.
isEmpty
())
date_format_
=
user_date_format
;
datepicker_
->
setDisplayFormat
(
date_format_
);
...
...
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