From 325c3c9446901efc20d95fb775b152e2dff0673f Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Wed, 14 Nov 2018 09:56:03 +1300 Subject: [PATCH] bluetooth: Align struct members --- panels/bluetooth/cc-bluetooth-panel.c | 31 ++++++++++++++------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/panels/bluetooth/cc-bluetooth-panel.c b/panels/bluetooth/cc-bluetooth-panel.c index 42922dc13..89e11dfb9 100644 --- a/panels/bluetooth/cc-bluetooth-panel.c +++ b/panels/bluetooth/cc-bluetooth-panel.c @@ -33,25 +33,26 @@ #define WID(s) GTK_WIDGET (gtk_builder_get_object (self->builder, s)) struct _CcBluetoothPanel { - CcPanel parent_instance; + CcPanel parent_instance; - GtkBox *airplane_box; - GtkBuilder *builder; - GtkBox *disabled_box; - GtkBox *hw_airplane_box; - GtkBox *no_devices_box; + GtkBox *airplane_box; + GtkBuilder *builder; + GtkBox *disabled_box; + GtkBox *hw_airplane_box; + GtkBox *no_devices_box; BluetoothSettingsWidget *settings_widget; - GtkStack *stack; - GCancellable *cancellable; + GtkStack *stack; + + GCancellable *cancellable; /* Killswitch */ - GtkWidget *kill_switch_header; - GDBusProxy *rfkill; - GDBusProxy *properties; - gboolean airplane_mode; - gboolean bt_airplane_mode; - gboolean hardware_airplane_mode; - gboolean has_airplane_mode; + GtkWidget *kill_switch_header; + GDBusProxy *rfkill; + GDBusProxy *properties; + gboolean airplane_mode; + gboolean bt_airplane_mode; + gboolean hardware_airplane_mode; + gboolean has_airplane_mode; }; CC_PANEL_REGISTER (CcBluetoothPanel, cc_bluetooth_panel)