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
Multimedia
Kdenlive
Commits
cdbfc26c
Commit
cdbfc26c
authored
Aug 14, 2021
by
Julius Künzel
⚠
Browse files
Fix build with -DCRASH_AUTO_TEST=ON
broken by
f7f3fc21
BUG: 440414
parent
936b93f9
Pipeline
#74730
passed with stage
in 9 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/timeline2/model/timelinemodel.cpp
View file @
cdbfc26c
...
...
@@ -64,15 +64,15 @@ RTTR_REGISTRATION
using
namespace
rttr
;
registration
::
class_
<
TimelineModel
>
(
"TimelineModel"
)
.
method
(
"setTrackLockedState"
,
&
TimelineModel
::
setTrackLockedState
)(
parameter_names
(
"trackId"
,
"lock"
))
.
method
(
"requestClipMove"
,
select_overload
<
bool
(
int
,
int
,
int
,
bool
,
bool
,
bool
,
bool
)
>
(
&
TimelineModel
::
requestClipMove
))(
parameter_names
(
"clipId"
,
"trackId"
,
"position"
,
"moveMirrorTracks"
,
"updateView"
,
"logUndo"
,
"invalidateTimeline"
))
.
method
(
"requestClipMove"
,
select_overload
<
bool
(
int
,
int
,
int
,
bool
,
bool
,
bool
,
bool
,
bool
)
>
(
&
TimelineModel
::
requestClipMove
))(
parameter_names
(
"clipId"
,
"trackId"
,
"position"
,
"moveMirrorTracks"
,
"updateView"
,
"logUndo"
,
"invalidateTimeline"
,
"revertMove"
))
.
method
(
"requestCompositionMove"
,
select_overload
<
bool
(
int
,
int
,
int
,
bool
,
bool
)
>
(
&
TimelineModel
::
requestCompositionMove
))(
parameter_names
(
"compoId"
,
"trackId"
,
"position"
,
"updateView"
,
"logUndo"
))
.
method
(
"requestClipInsertion"
,
select_overload
<
bool
(
const
QString
&
,
int
,
int
,
int
&
,
bool
,
bool
,
bool
)
>
(
&
TimelineModel
::
requestClipInsertion
))(
parameter_names
(
"binClipId"
,
"trackId"
,
"position"
,
"id"
,
"logUndo"
,
"refreshView"
,
"useTargets"
))
.
method
(
"requestItemDeletion"
,
select_overload
<
bool
(
int
,
bool
)
>
(
&
TimelineModel
::
requestItemDeletion
))(
parameter_names
(
"clipId"
,
"logUndo"
))
.
method
(
"requestGroupMove"
,
select_overload
<
bool
(
int
,
int
,
int
,
int
,
bool
,
bool
,
bool
)
>
(
&
TimelineModel
::
requestGroupMove
))(
parameter_names
(
"itemId"
,
"groupId"
,
"delta_track"
,
"delta_pos"
,
"moveMirrorTracks"
,
"updateView"
,
"logUndo"
))
.
method
(
"requestGroupMove"
,
select_overload
<
bool
(
int
,
int
,
int
,
int
,
bool
,
bool
,
bool
,
bool
)
>
(
&
TimelineModel
::
requestGroupMove
))(
parameter_names
(
"itemId"
,
"groupId"
,
"delta_track"
,
"delta_pos"
,
"moveMirrorTracks"
,
"updateView"
,
"logUndo"
,
"revertMove"
))
.
method
(
"requestGroupDeletion"
,
select_overload
<
bool
(
int
,
bool
)
>
(
&
TimelineModel
::
requestGroupDeletion
))(
parameter_names
(
"clipId"
,
"logUndo"
))
.
method
(
"requestItemResize"
,
select_overload
<
int
(
int
,
int
,
bool
,
bool
,
int
,
bool
)
>
(
&
TimelineModel
::
requestItemResize
))(
parameter_names
(
"itemId"
,
"size"
,
"right"
,
"logUndo"
,
"snapDistance"
,
"allowSingleResize"
))
...
...
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