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
Multimedia
Kdenlive
Commits
c21df9c2
Commit
c21df9c2
authored
Aug 14, 2022
by
Julius Künzel
💬
Browse files
Fix "invalid conversion from ‘char’ to ‘const char*’" (Qt6)
parent
1dccb551
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/doc/documentvalidator.cpp
View file @
c21df9c2
...
...
@@ -1958,7 +1958,7 @@ auto DocumentValidator::upgradeTo100(const QLocale &documentLocale) -> QString
value
.
replace
(
QRegularExpression
(
"^(
\\
d+)"
+
QString
(
decimalPoint
)
+
"(
\\
d+:)"
),
"
\\
1.
\\
2"
);
}
else
if
(
autoReplace
)
{
// Just replace decimal point
value
.
replace
(
decimalPoint
,
'.'
);
value
.
replace
(
decimalPoint
,
QStringLiteral
(
"."
)
);
}
else
{
fixTimecode
(
value
);
}
...
...
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