aboutsummaryrefslogtreecommitdiff
path: root/src/render.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2018-10-17 14:50:28 +0200
committerThomas White <taw@bitwiz.me.uk>2018-10-17 14:50:28 +0200
commit2b2a139a94c932d50a5ad5a5ab91f997493e5b5a (patch)
treea80c35594d21c4259284a0db5818e077fc1ec70a /src/render.h
parent8f7480255e76fc27bcab5ab10ef6c15368c5c495 (diff)
Switch to new Stylesheet type
Diffstat (limited to 'src/render.h')
-rw-r--r--src/render.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render.h b/src/render.h
index aadb033..0cfae26 100644
--- a/src/render.h
+++ b/src/render.h
@@ -35,7 +35,7 @@
/* Convienience function to run the entire pipeline */
extern cairo_surface_t *render_sc(SCBlock *scblocks, int w, int h,
double log_w, double log_h,
- SCBlock *stylesheet, SCCallbackList *cbl,
+ Stylesheet *stylesheet, SCCallbackList *cbl,
ImageStore *is,
int slide_number, struct frame **ptop,
PangoLanguage *lang);
@@ -44,7 +44,7 @@ extern cairo_surface_t *render_sc(SCBlock *scblocks, int w, int h,
* Needs to be followed by: wrap_contents() (recursively)
* recursive_draw()
*/
-extern struct frame *interp_and_shape(SCBlock *scblocks, SCBlock *stylesheet,
+extern struct frame *interp_and_shape(SCBlock *scblocks, Stylesheet *stylesheet,
SCCallbackList *cbl,
ImageStore *is,
int slide_number, PangoContext *pc,