diff options
author | info-cppsp <[email protected]> | 2017-11-18 16:25:05 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-11-26 20:41:43 +0100 |
commit | 2c16ec3e88297515b75e429f52e0c0bd6703bab3 (patch) | |
tree | a6ee798e27f1b67c02c780553c702eec0b2a7900 /sensors-applet/prefs-dialog.h | |
parent | e493e98f479c5559adfe2451b6c80bf87318149a (diff) | |
download | mate-sensors-applet-2c16ec3e88297515b75e429f52e0c0bd6703bab3.tar.bz2 mate-sensors-applet-2c16ec3e88297515b75e429f52e0c0bd6703bab3.tar.xz |
Fix indents 07
Diffstat (limited to 'sensors-applet/prefs-dialog.h')
-rw-r--r-- | sensors-applet/prefs-dialog.h | 62 |
1 files changed, 30 insertions, 32 deletions
diff --git a/sensors-applet/prefs-dialog.h b/sensors-applet/prefs-dialog.h index 331850b..14c3a1e 100644 --- a/sensors-applet/prefs-dialog.h +++ b/sensors-applet/prefs-dialog.h @@ -26,41 +26,39 @@ #include "sensors-applet.h" typedef struct { - SensorsApplet *sensors_applet; - GtkDialog *dialog; - GtkNotebook *notebook; - - /* widgets for global prefs */ - GtkSpinButton *timeout_spinbutton, *graph_size_spinbutton; - GtkGrid *globals_grid; - GtkHSeparator *globals_separator; - GtkComboBoxText *display_mode_combo_box, *layout_mode_combo_box, *temperature_scale_combo_box; - GtkLabel *timeout_label, *display_mode_label, *layout_mode_label, *temperature_scale_label, *graph_size_label, *update_header, *display_header; - GtkAdjustment *timeout_adjust, *graph_size_adjust; - GtkWidget *show_units; + SensorsApplet *sensors_applet; + GtkDialog *dialog; + GtkNotebook *notebook; + + /* widgets for global prefs */ + GtkSpinButton *timeout_spinbutton, *graph_size_spinbutton; + GtkGrid *globals_grid; + GtkHSeparator *globals_separator; + GtkComboBoxText *display_mode_combo_box, *layout_mode_combo_box, *temperature_scale_combo_box; + GtkLabel *timeout_label, *display_mode_label, *layout_mode_label, *temperature_scale_label, *graph_size_label, *update_header, *display_header; + GtkAdjustment *timeout_adjust, *graph_size_adjust; + GtkWidget *show_units; #ifdef HAVE_LIBNOTIFY - GtkCheckButton *display_notifications; - GtkLabel *notifications_header; + GtkCheckButton *display_notifications; + GtkLabel *notifications_header; #endif - - /* widgets for sensors tree */ - GtkTreeView *view; - GtkTreeViewColumn *id_column, *label_column, *enable_column, *icon_column; - GtkCellRenderer *id_renderer, *label_renderer, *enable_renderer, *icon_renderer; - GtkScrolledWindow *scrolled_window; - - GtkButtonBox *buttons_box; /* holds sensor reorder buttons */ - GtkBox *sensors_hbox; /* holds scrolled window and - * buttons_vbox */ - GtkBox *sensors_vbox; /* holds sensors_hbox and sensor_config_hbox */ - GtkBox *sensor_config_hbox; /* holds config button */ - GtkSizeGroup *size_group; /* so comboboxes all - * request the same size */ - - GtkButton *sensor_up_button; - GtkButton *sensor_down_button; - GtkButton *sensor_config_button; + + /* widgets for sensors tree */ + GtkTreeView *view; + GtkTreeViewColumn *id_column, *label_column, *enable_column, *icon_column; + GtkCellRenderer *id_renderer, *label_renderer, *enable_renderer, *icon_renderer; + GtkScrolledWindow *scrolled_window; + + GtkButtonBox *buttons_box; /* holds sensor reorder buttons */ + GtkBox *sensors_hbox; /* holds scrolled window and buttons_vbox */ + GtkBox *sensors_vbox; /* holds sensors_hbox and sensor_config_hbox */ + GtkBox *sensor_config_hbox; /* holds config button */ + GtkSizeGroup *size_group; /* so comboboxes all request the same size */ + + GtkButton *sensor_up_button; + GtkButton *sensor_down_button; + GtkButton *sensor_config_button; } PrefsDialog; /* function prototypes */ |