From 07bc569bdf7b7c040076c0da487d75ec0d58e0d2 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sun, 28 Oct 2018 12:01:34 +1100 Subject: [PATCH] changed wording for clang --- panels/viewer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/panels/viewer.cpp b/panels/viewer.cpp index e987b8777..2211f8006 100644 --- a/panels/viewer.cpp +++ b/panels/viewer.cpp @@ -300,7 +300,9 @@ void Viewer::pause() { stop_recording(); // import audio - panel_project->process_file_list(false, QStringList(get_recorded_audio_filename()), NULL, NULL); + QStringList file_list; + file_list.append(get_recorded_audio_filename()); + panel_project->process_file_list(false, file_list, NULL, NULL); // add it to the sequence Clip* c = new Clip(seq);