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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gwin/progressbar.c b/src/gwin/progressbar.c
index c1f9a113..90be6e43 100644
--- a/src/gwin/progressbar.c
+++ b/src/gwin/progressbar.c
@@ -123,7 +123,7 @@ void gwinProgressbarSetPosition(GHandle gh, int pos) {
}
ResetDisplayPos(gsw);
- _gwidgetUpdate(gh);
+ _gwinUpdate(gh);
#undef gsw
}
@@ -154,7 +154,7 @@ void gwinProgressbarIncrement(GHandle gh) {
gsw->pos = gsw->max;
ResetDisplayPos(gsw);
- _gwidgetUpdate(gh);
+ _gwinUpdate(gh);
#undef gsw
}
@@ -173,7 +173,7 @@ void gwinProgressbarDecrement(GHandle gh) {
gsw->pos -= gsw->res;
ResetDisplayPos(gsw);
- _gwidgetUpdate(gh);
+ _gwinUpdate(gh);
#undef gsw
}