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
721ad3e6
Commit
721ad3e6
authored
Oct 08, 2022
by
Julius Künzel
💬
Browse files
[Qt6.4] Fix one more char* to QVariant issue
parent
357ebcdc
Pipeline
#244090
failed with stage
in 7 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/trackmodel.cpp
View file @
721ad3e6
...
...
@@ -917,7 +917,7 @@ int TrackModel::getRowfromComposition(int tid) const
QVariant
TrackModel
::
getProperty
(
const
QString
&
name
)
const
{
READ_LOCK
();
return
Q
Variant
(
m_track
->
get
(
name
.
toUtf8
().
constData
()));
return
Q
String
(
m_track
->
get
(
name
.
toUtf8
().
constData
()));
}
void
TrackModel
::
setProperty
(
const
QString
&
name
,
const
QString
&
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