bluetooth: Align struct members

This commit is contained in:
Robert Ancell 2018-11-14 09:56:03 +13:00 committed by Bastien Nocera
parent 4f97e8cb07
commit 325c3c9446

View file

@ -33,25 +33,26 @@
#define WID(s) GTK_WIDGET (gtk_builder_get_object (self->builder, s)) #define WID(s) GTK_WIDGET (gtk_builder_get_object (self->builder, s))
struct _CcBluetoothPanel { struct _CcBluetoothPanel {
CcPanel parent_instance; CcPanel parent_instance;
GtkBox *airplane_box; GtkBox *airplane_box;
GtkBuilder *builder; GtkBuilder *builder;
GtkBox *disabled_box; GtkBox *disabled_box;
GtkBox *hw_airplane_box; GtkBox *hw_airplane_box;
GtkBox *no_devices_box; GtkBox *no_devices_box;
BluetoothSettingsWidget *settings_widget; BluetoothSettingsWidget *settings_widget;
GtkStack *stack; GtkStack *stack;
GCancellable *cancellable;
GCancellable *cancellable;
/* Killswitch */ /* Killswitch */
GtkWidget *kill_switch_header; GtkWidget *kill_switch_header;
GDBusProxy *rfkill; GDBusProxy *rfkill;
GDBusProxy *properties; GDBusProxy *properties;
gboolean airplane_mode; gboolean airplane_mode;
gboolean bt_airplane_mode; gboolean bt_airplane_mode;
gboolean hardware_airplane_mode; gboolean hardware_airplane_mode;
gboolean has_airplane_mode; gboolean has_airplane_mode;
}; };
CC_PANEL_REGISTER (CcBluetoothPanel, cc_bluetooth_panel) CC_PANEL_REGISTER (CcBluetoothPanel, cc_bluetooth_panel)