From 39876d710881d647fd0d755d31b620a7214cf9ff Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 22 Mar 2025 14:28:03 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro (cherry picked from commit b1606f1200c833b5a0896d6bfe08db8db8c6d81e) --- src/profilecertoptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/profilecertoptions.cpp') diff --git a/src/profilecertoptions.cpp b/src/profilecertoptions.cpp index 705e998..cd2f78c 100644 --- a/src/profilecertoptions.cpp +++ b/src/profilecertoptions.cpp @@ -51,11 +51,11 @@ void ProfileCertOptions::useSpecialServerCertificateToggled(bool) { if (UseSpecialServerCertificateCheckBox->isChecked()) { - SpecialServerCertificateURLRequester->setEnabled(TRUE); + SpecialServerCertificateURLRequester->setEnabled(true); } else { - SpecialServerCertificateURLRequester->setEnabled(FALSE); + SpecialServerCertificateURLRequester->setEnabled(false); } } -- cgit v1.2.3