diff options
author | Thomas White <taw@bitwiz.me.uk> | 2018-10-20 10:09:38 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2018-10-20 10:09:38 +0200 |
commit | 73433f7ee0ca0d86edacbe8544e95911a9856ddd (patch) | |
tree | 240a195985a40e8bc7b92acf88d0428ec9635c3f /src/sc_editor.h | |
parent | ae183124e9317f3d183da746b93d75909c7b89b5 (diff) |
Remove legacy API cruft
Diffstat (limited to 'src/sc_editor.h')
-rw-r--r-- | src/sc_editor.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sc_editor.h b/src/sc_editor.h index 35557d4..d3c111b 100644 --- a/src/sc_editor.h +++ b/src/sc_editor.h @@ -170,11 +170,8 @@ typedef struct _sceditorclass SCEditorClass; extern void sc_editor_set_scblock(SCEditor *e, SCBlock *scblocks); extern void sc_editor_set_stylesheet(SCEditor *e, Stylesheet *stylesheet); -extern SCBlock *sc_editor_get_scblock(SCEditor *e); -extern GtkWidget *sc_editor_get_widget(SCEditor *e); extern SCEditor *sc_editor_new(SCBlock *scblocks, Stylesheet *stylesheet, PangoLanguage *lang, const char *storename); -extern void sc_editor_set_size(SCEditor *e, int w, int h); extern void sc_editor_set_logical_size(SCEditor *e, double w, double h); extern void sc_editor_set_flow(SCEditor *e, int flow); extern void sc_editor_set_scale(SCEditor *e, int scale); @@ -189,7 +186,6 @@ extern void sc_editor_paste(SCEditor *e); extern void sc_editor_add_storycode(SCEditor *e, const char *sc); extern void sc_editor_copy_selected_frame(SCEditor *e); extern void sc_editor_delete_selected_frame(SCEditor *e); -extern void sc_editor_remove_cursor(SCEditor *e); extern void sc_editor_ensure_cursor(SCEditor *e); extern SCBlock *split_paragraph_at_cursor(SCEditor *e); |