summaryrefslogtreecommitdiffstats
path: root/src/profilecmdexecafterdisconnectoptions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 14:28:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 14:28:03 +0900
commitb1606f1200c833b5a0896d6bfe08db8db8c6d81e (patch)
tree7259b359fa3dc825890f7c7a653b7628f7cf0f02 /src/profilecmdexecafterdisconnectoptions.cpp
parent6af1ac6d9f3382a8f9494eae0455b2a01c91a86c (diff)
downloadkvpnc-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/profilecmdexecafterdisconnectoptions.cpp')
-rw-r--r--src/profilecmdexecafterdisconnectoptions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/profilecmdexecafterdisconnectoptions.cpp b/src/profilecmdexecafterdisconnectoptions.cpp
index 19dc144..bf69556 100644
--- a/src/profilecmdexecafterdisconnectoptions.cpp
+++ b/src/profilecmdexecafterdisconnectoptions.cpp
@@ -41,9 +41,9 @@ ProfileCmdExecAfterDisconnectOptions::~ProfileCmdExecAfterDisconnectOptions()
void ProfileCmdExecAfterDisconnectOptions::execCmdAfterDisconnectToggled(bool)
{
if (ExcuteCmdAfterDisconnectCheckBox->isChecked())
- CmdAfterDisconnectTextEdit->setEnabled( TRUE );
+ CmdAfterDisconnectTextEdit->setEnabled( true );
else
- CmdAfterDisconnectTextEdit->setEnabled( FALSE );
+ CmdAfterDisconnectTextEdit->setEnabled( false );
}
void ProfileCmdExecAfterDisconnectOptions::dialogChanged()