diff options
author | Thomas White <taw@bitwiz.org.uk> | 2014-11-17 23:51:29 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2014-11-17 23:51:29 +0100 |
commit | 0b3028d4b56b2b37c992d298189ca4fba3a5071e (patch) | |
tree | decc95945e836f8c4c5c3bceb4d3f6e3b8451cf4 /src/colloquium.c | |
parent | aa50d04c76414d1a558811afa22fb540edb8a90a (diff) |
GObjectification, part I
Diffstat (limited to 'src/colloquium.c')
-rw-r--r-- | src/colloquium.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/colloquium.c b/src/colloquium.c index 51b60c9..e3ee61f 100644 --- a/src/colloquium.c +++ b/src/colloquium.c @@ -28,14 +28,15 @@ #include <gtk/gtk.h> #include <getopt.h> +#include "colloquium.h" #include "presentation.h" #include "narrative_window.h" -typedef struct +struct _colloquium { GtkApplication parent_instance; -} Colloquium; +}; typedef GtkApplicationClass ColloquiumClass; |