mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-24 04:25:31 +00:00
application: Reindent struct members
Split into separate commit to reduce diff noise.
This commit is contained in:
parent
d3e42c93cd
commit
7d3b5afad9
1 changed files with 15 additions and 15 deletions
|
@ -58,24 +58,24 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct _CallsApplication {
|
struct _CallsApplication {
|
||||||
GtkApplication parent_instance;
|
GtkApplication parent_instance;
|
||||||
|
|
||||||
gboolean daemon;
|
gboolean daemon;
|
||||||
CallsRinger *ringer;
|
CallsRinger *ringer;
|
||||||
CallsNotifier *notifier;
|
CallsNotifier *notifier;
|
||||||
CallsRecordStore *record_store;
|
CallsRecordStore *record_store;
|
||||||
CallsMainWindow *main_window;
|
CallsMainWindow *main_window;
|
||||||
CallsCallWindow *call_window;
|
CallsCallWindow *call_window;
|
||||||
CallsDBusManager *dbus_manager;
|
CallsDBusManager *dbus_manager;
|
||||||
CallsManager *manager;
|
CallsManager *manager;
|
||||||
|
|
||||||
char *uri;
|
|
||||||
guint id_sigterm;
|
|
||||||
guint id_sigint;
|
|
||||||
gboolean shutdown;
|
|
||||||
gboolean db_done;
|
|
||||||
CallsPluginManager *plugin_manager;
|
CallsPluginManager *plugin_manager;
|
||||||
CallsSettings *settings;
|
CallsSettings *settings;
|
||||||
|
|
||||||
|
char *uri;
|
||||||
|
guint id_sigterm;
|
||||||
|
guint id_sigint;
|
||||||
|
gboolean shutdown;
|
||||||
|
gboolean db_done;
|
||||||
};
|
};
|
||||||
|
|
||||||
G_DEFINE_TYPE (CallsApplication, calls_application, GTK_TYPE_APPLICATION);
|
G_DEFINE_TYPE (CallsApplication, calls_application, GTK_TYPE_APPLICATION);
|
||||||
|
|
Loading…
Reference in a new issue