summaryrefslogtreecommitdiff
path: root/src/gl-application.c
diff options
context:
space:
mode:
authorDavid King <davidk@gnome.org>2015-04-13 16:43:35 +0100
committerDavid King <davidk@gnome.org>2015-04-13 16:43:35 +0100
commita8ca8c79f349d70a825051b965c35b10cf0cd915 (patch)
treeb2125085385fcc0002d0e2e13e2fae64db60c893 /src/gl-application.c
parent81f44c881d5e40310c789790d3fe2f20756f11db (diff)
downloadgnome-logs-a8ca8c79f349d70a825051b965c35b10cf0cd915.tar.gz
Use G_DECLARE_FINAL_TYPE throughout
Diffstat (limited to 'src/gl-application.c')
-rw-r--r--src/gl-application.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gl-application.c b/src/gl-application.c
index a4649c4..a6f2e64 100644
--- a/src/gl-application.c
+++ b/src/gl-application.c
@@ -1,6 +1,6 @@
/*
* GNOME Logs - View and search logs
- * Copyright (C) 2013 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
@@ -28,6 +28,12 @@
#include "gl-util.h"
#include "gl-window.h"
+struct _GlApplication
+{
+ /*< private >*/
+ GtkApplication parent_instance;
+};
+
typedef struct
{
GSettings *desktop;