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 {
|
||||
GtkApplication parent_instance;
|
||||
GtkApplication parent_instance;
|
||||
|
||||
gboolean daemon;
|
||||
CallsRinger *ringer;
|
||||
CallsNotifier *notifier;
|
||||
CallsRecordStore *record_store;
|
||||
CallsMainWindow *main_window;
|
||||
CallsCallWindow *call_window;
|
||||
CallsDBusManager *dbus_manager;
|
||||
CallsManager *manager;
|
||||
|
||||
char *uri;
|
||||
guint id_sigterm;
|
||||
guint id_sigint;
|
||||
gboolean shutdown;
|
||||
gboolean db_done;
|
||||
gboolean daemon;
|
||||
CallsRinger *ringer;
|
||||
CallsNotifier *notifier;
|
||||
CallsRecordStore *record_store;
|
||||
CallsMainWindow *main_window;
|
||||
CallsCallWindow *call_window;
|
||||
CallsDBusManager *dbus_manager;
|
||||
CallsManager *manager;
|
||||
CallsPluginManager *plugin_manager;
|
||||
CallsSettings *settings;
|
||||
|
||||
char *uri;
|
||||
guint id_sigterm;
|
||||
guint id_sigint;
|
||||
gboolean shutdown;
|
||||
gboolean db_done;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE (CallsApplication, calls_application, GTK_TYPE_APPLICATION);
|
||||
|
|
Loading…
Reference in a new issue