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:
authorCampbell Barton <ideasman42@gmail.com>2016-01-29 06:31:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-29 07:12:57 +0300
commitcd6178e5849586f791bd94e51d0e9272cd3da1ad (patch)
tree5fa328526736db618a36dc770c75fb311ce92f3e /source/blender/editors/space_sequencer/sequencer_edit.c
parente2161ca854da03bae8c17c7cfac6dbcd9d62f33b (diff)
Cleanup: remove unused code
Diffstat (limited to 'source/blender/editors/space_sequencer/sequencer_edit.c')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 9d96226027a..54e9b65e3b3 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -35,7 +35,6 @@
#include "MEM_guardedalloc.h"
#include "BLI_blenlib.h"
-#include "BLI_fileops.h"
#include "BLI_ghash.h"
#include "BLI_math.h"
#include "BLI_timecode.h"
@@ -929,37 +928,6 @@ static bool sequence_offset_after_frame(Scene *scene, const int delta, const int
return done;
}
-static void UNUSED_FUNCTION(touch_seq_files) (Scene *scene)
-{
- Sequence *seq;
- Editing *ed = BKE_sequencer_editing_get(scene, false);
- char str[256];
-
- /* touch all strips with movies */
-
- if (ed == NULL) return;
-
- // XXX25 if (okee("Touch and print selected movies")==0) return;
-
- WM_cursor_wait(1);
-
- SEQP_BEGIN (ed, seq)
- {
- if (seq->flag & SELECT) {
- if (seq->type == SEQ_TYPE_MOVIE) {
- if (seq->strip && seq->strip->stripdata) {
- BLI_make_file_string(G.main->name, str, seq->strip->dir, seq->strip->stripdata->name);
- BLI_file_touch(seq->name);
- }
- }
-
- }
- }
- SEQ_END
-
- WM_cursor_wait(0);
-}
-
#if 0
static void set_filter_seq(Scene *scene)
{