From bdb0aa04da758449d8b82e90f00cae94593146da Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 5 Jan 2026 23:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- khexedit/statusbarprogress.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'khexedit/statusbarprogress.cpp') diff --git a/khexedit/statusbarprogress.cpp b/khexedit/statusbarprogress.cpp index 2ec4c4a..e60a7ea 100644 --- a/khexedit/statusbarprogress.cpp +++ b/khexedit/statusbarprogress.cpp @@ -212,13 +212,13 @@ int CStatusBarProgress::recalcValue(int range) void CStatusBarProgress::valueChange() { - repaint(contentsRect(), FALSE); + repaint(contentsRect(), false); emit percentageChanged(recalcValue(100)); } void CStatusBarProgress::rangeChange() { - repaint(contentsRect(), FALSE); + repaint(contentsRect(), false); emit percentageChanged(recalcValue(100)); } -- cgit v1.2.3