diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2012-01-15 14:29:08 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-01-15 14:29:08 -0800 |
commit | 788ebc0500b12fb502b82473c1459ccca06345a5 (patch) | |
tree | 37243eb0e3741dec71a7d9606f962ede300b6cf7 /statistics.c | |
parent | 68a1ff9cf56576ee3e3f32e08bc7f7ad2b03697f (diff) | |
download | subsurface-788ebc0500b12fb502b82473c1459ccca06345a5.tar.gz |
Create separate single dive and total stats pages
No additional statistics added, yet.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'statistics.c')
-rw-r--r-- | statistics.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/statistics.c b/statistics.c index 60b4776bc..5017fe0b2 100644 --- a/statistics.c +++ b/statistics.c @@ -242,10 +242,11 @@ static GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label) return label_widget; } -static GtkWidget *total_stats_widget(GtkWidget *vbox) +GtkWidget *total_stats_widget(void) { + GtkWidget *vbox, *hbox, *statsframe, *framebox; - GtkWidget *hbox, *statsframe, *framebox; + vbox = gtk_vbox_new(FALSE, 3); statsframe = gtk_frame_new("Statistics"); gtk_box_pack_start(GTK_BOX(vbox), statsframe, TRUE, FALSE, 3); @@ -272,9 +273,8 @@ static GtkWidget *total_stats_widget(GtkWidget *vbox) return vbox; } -static GtkWidget *single_stats_widget(void) +GtkWidget *single_stats_widget(void) { - GtkWidget *vbox, *hbox, *infoframe, *framebox; vbox = gtk_vbox_new(FALSE, 3); @@ -311,9 +311,3 @@ static GtkWidget *single_stats_widget(void) return vbox; } - -GtkWidget* stats_widget(void) -{ - GtkWidget *vbox = single_stats_widget(); - return total_stats_widget(vbox); -} |