diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-30 14:27:29 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-06-25 16:29:01 +0900 |
| commit | a7f1e6e2552d9cdbb3d76bff089db522248b9a24 (patch) | |
| tree | 2e6dd07698083df817163d572443aaf6fdd26651 /tools/designer/examples/multiclip/multiclip.ui.h | |
| parent | 2584dba8aabfa2db8297dcfa258d33545ed6af43 (diff) | |
| download | tqt-a7f1e6e2552d9cdbb3d76bff089db522248b9a24.tar.gz tqt-a7f1e6e2552d9cdbb3d76bff089db522248b9a24.zip | |
Replace TRUE/FALSE with boolean values true/false - part 1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tools/designer/examples/multiclip/multiclip.ui.h')
| -rw-r--r-- | tools/designer/examples/multiclip/multiclip.ui.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/designer/examples/multiclip/multiclip.ui.h b/tools/designer/examples/multiclip/multiclip.ui.h index 203fc6906..ba329f01e 100644 --- a/tools/designer/examples/multiclip/multiclip.ui.h +++ b/tools/designer/examples/multiclip/multiclip.ui.h @@ -45,9 +45,9 @@ void MulticlipForm::init() void MulticlipForm::selectionChanged() { - cb->setSelectionMode( TRUE ); + cb->setSelectionMode( true ); dataChanged(); - cb->setSelectionMode( FALSE ); + cb->setSelectionMode( false ); } void MulticlipForm::copyPrevious() @@ -55,9 +55,9 @@ void MulticlipForm::copyPrevious() if ( clippingsListBox->currentItem() != -1 ) { cb->setText( clippingsListBox->currentText() ); if ( cb->supportsSelection() ) { - cb->setSelectionMode( TRUE ); + cb->setSelectionMode( true ); cb->setText( clippingsListBox->currentText() ); - cb->setSelectionMode( FALSE ); + cb->setSelectionMode( false ); } } } |
