Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/sequencer/SEQ_edit.h')
-rw-r--r--source/blender/sequencer/SEQ_edit.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/sequencer/SEQ_edit.h b/source/blender/sequencer/SEQ_edit.h
index fe12ac253b9..73723c23920 100644
--- a/source/blender/sequencer/SEQ_edit.h
+++ b/source/blender/sequencer/SEQ_edit.h
@@ -90,8 +90,8 @@ struct Sequence *SEQ_edit_strip_split(struct Main *bmain,
struct Scene *scene,
struct ListBase *seqbase,
struct Sequence *seq,
- const int timeline_frame,
- const eSeqSplitMethod method,
+ int timeline_frame,
+ eSeqSplitMethod method,
const char **r_error);
/**
* Find gap after initial_frame and move strips on right side to close the gap
@@ -104,8 +104,8 @@ struct Sequence *SEQ_edit_strip_split(struct Main *bmain,
*/
bool SEQ_edit_remove_gaps(struct Scene *scene,
struct ListBase *seqbase,
- const int initial_frame,
- const bool remove_all_gaps);
+ int initial_frame,
+ bool remove_all_gaps);
void SEQ_edit_sequence_name_set(struct Scene *scene, struct Sequence *seq, const char *new_name);
#ifdef __cplusplus