diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-16 14:47:10 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-16 15:04:27 +0900 |
commit | 87843223ab8cb466b09f6867aba997e7f053d380 (patch) | |
tree | 0043202f2505428fe072ce8ac9952709a97d9664 /src/AboutDialog.cpp | |
parent | 80003eb87bccb1b244b3023b0a97aae2a7d0e8ee (diff) | |
download | universal-indent-gui-tqt-87843223ab8cb466b09f6867aba997e7f053d380.tar.gz universal-indent-gui-tqt-87843223ab8cb466b09f6867aba997e7f053d380.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/AboutDialog.cpp')
-rw-r--r-- | src/AboutDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index 0af0152..855b7a3 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -28,7 +28,7 @@ // Displays a dialog window with information about UniversalIndentGUI AboutDialog::AboutDialog(TQWidget *parent, WFlags flags) : - AboutDialogBase(parent, NULL, FALSE, flags) + AboutDialogBase(parent, NULL, false, flags) { TQFont titleFont = titleLabel->font(); titleFont.setPointSize(20); |