aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.c
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/sc_editor.c
parent8f7480255e76fc27bcab5ab10ef6c15368c5c495 (diff)
Switch to new Stylesheet type
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r--src/sc_editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c
index 999f919..0431b7b 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -2033,7 +2033,7 @@ void sc_editor_set_top_frame_editable(SCEditor *e, int top_frame_editable)
}
-void sc_editor_set_stylesheet(SCEditor *e, SCBlock *stylesheet)
+void sc_editor_set_stylesheet(SCEditor *e, Stylesheet *stylesheet)
{
e->stylesheet = stylesheet;
}
@@ -2125,7 +2125,7 @@ void sc_editor_set_imagestore(SCEditor *e, ImageStore *is)
}
-SCEditor *sc_editor_new(SCBlock *scblocks, SCBlock *stylesheet,
+SCEditor *sc_editor_new(SCBlock *scblocks, Stylesheet *stylesheet,
PangoLanguage *lang, const char *storename)
{
SCEditor *sceditor;