diff options
author | Thomas White <taw@bitwiz.org.uk> | 2015-12-26 22:56:22 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2015-12-26 23:18:09 +0100 |
commit | 057ddb969f7ed42b329b87bd8a9bdebbc649427d (patch) | |
tree | 44a94b873b14abf59197ef3dd7211d438cf6c72b /src/notes.h | |
parent | 55a8c269d2e77f798f9ca55d7a4afb7a9f98a701 (diff) |
Remove "struct slide" and the slide list
Diffstat (limited to 'src/notes.h')
-rw-r--r-- | src/notes.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/notes.h b/src/notes.h index 426cb7e..1939d3b 100644 --- a/src/notes.h +++ b/src/notes.h @@ -1,7 +1,7 @@ /* * notes.h * - * Copyright © 2013-2014 Thomas White <taw@bitwiz.org.uk> + * Copyright © 2013-2016 Thomas White <taw@bitwiz.org.uk> * * This file is part of Colloquium. * @@ -29,12 +29,10 @@ struct notes; -extern struct notes *open_notes(SlideWindow *sw, struct slide *slide); +extern struct notes *open_notes(SlideWindow *sw, SCBlock *slide); -extern void notes_set_slide(struct notes *n, struct slide *np); +extern void notes_set_slide(struct notes *n, SCBlock *np); extern void grab_current_notes(struct notes *n); -extern void attach_notes(struct slide *s); - #endif /* NOTES_H */ |