aboutsummaryrefslogtreecommitdiff
path: root/src/slideshow.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2015-12-26 22:56:22 +0100
committerThomas White <taw@bitwiz.org.uk>2015-12-26 23:18:09 +0100
commit057ddb969f7ed42b329b87bd8a9bdebbc649427d (patch)
tree44a94b873b14abf59197ef3dd7211d438cf6c72b /src/slideshow.h
parent55a8c269d2e77f798f9ca55d7a4afb7a9f98a701 (diff)
Remove "struct slide" and the slide list
Diffstat (limited to 'src/slideshow.h')
-rw-r--r--src/slideshow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/slideshow.h b/src/slideshow.h
index 99d5549..5124808 100644
--- a/src/slideshow.h
+++ b/src/slideshow.h
@@ -39,7 +39,7 @@ struct sscontrolfuncs
/* Controller should return what it thinks is the current slide
* (this might not be what is on the screen, e.g. if the display
* is unlinked) */
- struct slide *(*current_slide)(SlideShow *ss, void *vp);
+ SCBlock *(*current_slide)(SlideShow *ss, void *vp);
/* Controller should update whatever visual representation of
* whether or not the display is linked */
@@ -53,8 +53,8 @@ extern SlideShow *try_start_slideshow(struct presentation *p,
struct sscontrolfuncs ssc, void *vp);
extern void end_slideshow(SlideShow *ss);
-extern void change_proj_slide(SlideShow *ss, struct slide *np);
-extern struct slide *slideshow_slide(SlideShow *ss);
+extern void change_proj_slide(SlideShow *ss, SCBlock *np);
+extern SCBlock *slideshow_slide(SlideShow *ss);
extern void toggle_slideshow_link(SlideShow *ss);
extern int slideshow_linked(SlideShow *ss);