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/sc_editor.c | |
parent | 55a8c269d2e77f798f9ca55d7a4afb7a9f98a701 (diff) |
Remove "struct slide" and the slide list
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r-- | src/sc_editor.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c index 4c0e58a..24b97c1 100644 --- a/src/sc_editor.c +++ b/src/sc_editor.c @@ -1792,6 +1792,12 @@ void sc_editor_set_scblock(SCEditor *e, SCBlock *scblocks) } +SCBlock *sc_editor_get_scblock(SCEditor *e) +{ + return e->scblocks; +} + + static void update_size_request(SCEditor *e) { gtk_widget_set_size_request(GTK_WIDGET(e), 0, e->h + 2.0*e->min_border); |