diff options
Diffstat (limited to 'src/profilecmdexecafterconnectoptions.cpp')
-rw-r--r-- | src/profilecmdexecafterconnectoptions.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/profilecmdexecafterconnectoptions.cpp b/src/profilecmdexecafterconnectoptions.cpp index e2a8d94..3ff1aff 100644 --- a/src/profilecmdexecafterconnectoptions.cpp +++ b/src/profilecmdexecafterconnectoptions.cpp @@ -42,15 +42,15 @@ void ProfileCmdExecAfterConnectOptions::execCmdAfterConnectToggled(bool) { if (ExcuteCmdAfterConnectCheckBox->isChecked()) { - CmdAfterConnectTextEdit->setEnabled( TRUE ); - CommandAfterConnectDelayTimeNumInput->setEnabled( TRUE ); - CommandAfterConnectDelayTimeNumInputLabel->setEnabled( TRUE ); + CmdAfterConnectTextEdit->setEnabled( true ); + CommandAfterConnectDelayTimeNumInput->setEnabled( true ); + CommandAfterConnectDelayTimeNumInputLabel->setEnabled( true ); } else { - CmdAfterConnectTextEdit->setEnabled( FALSE ); - CommandAfterConnectDelayTimeNumInput->setEnabled( FALSE ); - CommandAfterConnectDelayTimeNumInputLabel->setEnabled( FALSE ); + CmdAfterConnectTextEdit->setEnabled( false ); + CommandAfterConnectDelayTimeNumInput->setEnabled( false ); + CommandAfterConnectDelayTimeNumInputLabel->setEnabled( false ); } } |