diff options
author | David King <davidk@gnome.org> | 2015-04-13 16:43:35 +0100 |
---|---|---|
committer | David King <davidk@gnome.org> | 2015-04-13 16:43:35 +0100 |
commit | a8ca8c79f349d70a825051b965c35b10cf0cd915 (patch) | |
tree | b2125085385fcc0002d0e2e13e2fae64db60c893 /src/gl-eventviewlist.c | |
parent | 81f44c881d5e40310c789790d3fe2f20756f11db (diff) | |
download | gnome-logs-a8ca8c79f349d70a825051b965c35b10cf0cd915.tar.gz |
Use G_DECLARE_FINAL_TYPE throughout
Diffstat (limited to 'src/gl-eventviewlist.c')
-rw-r--r-- | src/gl-eventviewlist.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gl-eventviewlist.c b/src/gl-eventviewlist.c index 753a7d0..5f50440 100644 --- a/src/gl-eventviewlist.c +++ b/src/gl-eventviewlist.c @@ -1,6 +1,6 @@ /* * GNOME Logs - View and search logs - * Copyright (C) 2013, 2014 Red Hat, Inc. + * Copyright (C) 2013, 2014, 2015 Red Hat, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -31,6 +31,12 @@ #include "gl-journal-model.h" #include "gl-util.h" +struct _GlEventViewList +{ + /*< private >*/ + GtkBox parent_instance; +}; + typedef struct { GlJournalModel *journal_model; |