diff options
author | Thomas White <taw@bitwiz.org.uk> | 2016-04-24 13:49:44 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2016-04-24 13:49:44 +0200 |
commit | d8aca50e2ba6bfec052da5ab406899fa00fb607e (patch) | |
tree | c0ceb602ac1324b7b5430746b368d19e423c7a42 /src/colloquium.c | |
parent | f48bebb3c4ad6941941ec889ce8b1c5f15c9a1c1 (diff) |
Fixes for creating a new presentation
Diffstat (limited to 'src/colloquium.c')
-rw-r--r-- | src/colloquium.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/colloquium.c b/src/colloquium.c index ab3aa1a..52c831a 100644 --- a/src/colloquium.c +++ b/src/colloquium.c @@ -47,7 +47,9 @@ G_DEFINE_TYPE(Colloquium, colloquium, GTK_TYPE_APPLICATION) static void colloquium_activate(GApplication *app) { - printf("activate!\n"); + struct presentation *p; + p = new_presentation(); + narrative_window_new(p, app); } |