diff options
author | Thomas White <taw@physics.org> | 2020-08-26 16:47:58 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-08-26 16:47:58 +0200 |
commit | beed39e09a3573380ee2cc0792b547c2f2d52852 (patch) | |
tree | b606a9d9faab02d68f848f78bc4600559dac63f2 /src/gui_backend_local.c | |
parent | f249385feb6799c913f3eba13d79dfd507c72c04 (diff) |
Add job title and notes fields
This required a bit of callback re-wiring
Diffstat (limited to 'src/gui_backend_local.c')
-rw-r--r-- | src/gui_backend_local.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_backend_local.c b/src/gui_backend_local.c index 6d4ac66c..98182720 100644 --- a/src/gui_backend_local.c +++ b/src/gui_backend_local.c @@ -151,7 +151,9 @@ void setup_subprocess(gpointer user_data) } -static void *run_indexing(char **filenames, +static void *run_indexing(const char *job_title, + const char *job_notes, + char **filenames, char **events, int n_frames, char *geom_filename, |