From 0a005ccbb81c622428ed1cd5e17835995be25380 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Mon, 12 Oct 2020 09:57:32 -0300 Subject: [PATCH] Removes unused variable in __UI_DrawProgressBar internal method. --- InForm/InForm.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InForm/InForm.ui b/InForm/InForm.ui index 5794e60..f14d50d 100644 --- a/InForm/InForm.ui +++ b/InForm/InForm.ui @@ -7614,7 +7614,7 @@ SUB __UI_DrawProgressBar (This AS __UI_ControlTYPE, ControlState) END IF IF This.ShowPercentage THEN - DIM ProgressString$, ReplaceCode% + DIM ProgressString$ ProgressString$ = LTRIM$(STR$(FIX((This.Value / This.Max) * 100))) + "%" IF LEN(Caption(This.ID)) THEN TempCaption$ = Replace$(Caption(This.ID), "\#", ProgressString$, 0, 0)