aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/progressbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/progressbar.c')
-rw-r--r--src/gwin/progressbar.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gwin/progressbar.c b/src/gwin/progressbar.c
index 37bad3c8..671c0971 100644
--- a/src/gwin/progressbar.c
+++ b/src/gwin/progressbar.c
@@ -200,6 +200,17 @@ void gwinProgressbarStart(GHandle gh, delaytime_t delay) {
#undef gsw
}
+void gwinProgressbarStop(GHandle gh) {
+ #define gsw ((GProgressbarObject *)gh)
+
+ if (gh->vmt != (gwinVMT *)&progressbarVMT)
+ return;
+
+ gtimerStop(&(gsw->gt));
+
+ #undef gsw
+}
+
/*----------------------------------------------------------
* Custom Draw Routines
*----------------------------------------------------------*/