diff options
Diffstat (limited to 'gui/digitlabelhelper.h')
-rw-r--r-- | gui/digitlabelhelper.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/digitlabelhelper.h b/gui/digitlabelhelper.h index 26e4637..4d45c68 100644 --- a/gui/digitlabelhelper.h +++ b/gui/digitlabelhelper.h @@ -36,8 +36,7 @@ class DigitLabelHelper { if (is_cleared) return QString(); - return is_hex ? QString::asprintf("%X", value) - : QString::number(value); + return is_hex ? QString::asprintf("%X", value) : QString::number(value); } }; |