diff options
author | Unia <jthidskes@live.nl> | 2013-04-08 14:06:06 +0200 |
---|---|---|
committer | Unia <jthidskes@live.nl> | 2013-04-08 14:06:06 +0200 |
commit | 919411efcf5933d84339f0e55e793900d205e27e (patch) | |
tree | 47f5585f83ec7a076a051314bd9631a4aa344afa /gstopwatch.c | |
parent | ef4cc8b8497241d3f7791a6d1def6bfe1366a703 (diff) |
lap count bug fixed
Diffstat (limited to 'gstopwatch.c')
-rw-r--r-- | gstopwatch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gstopwatch.c b/gstopwatch.c index 5e6f717..346b738 100644 --- a/gstopwatch.c +++ b/gstopwatch.c @@ -14,7 +14,7 @@ enum { gchar output[100]; GTimer *timer; -gint state = STOPPED; +gint state = STOPPED, lap = 0; GtkWidget *timer_display, *button_timer, *button_funcs, *tree; GtkListStore *liststore; GtkTreeSelection *selection; @@ -44,7 +44,6 @@ gboolean update_progress_bar (void) { } void add_lap (void) { - gint lap = 0; GtkTreePath *path; lap++; |