diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:28:03 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:28:03 +0900 |
| commit | b1606f1200c833b5a0896d6bfe08db8db8c6d81e (patch) | |
| tree | 7259b359fa3dc825890f7c7a653b7628f7cf0f02 /src/profilecertoptions.cpp | |
| parent | 6af1ac6d9f3382a8f9494eae0455b2a01c91a86c (diff) | |
| download | kvpnc-b1606f1200c833b5a0896d6bfe08db8db8c6d81e.tar.gz kvpnc-b1606f1200c833b5a0896d6bfe08db8db8c6d81e.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/profilecertoptions.cpp')
| -rw-r--r-- | src/profilecertoptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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); } } |
