diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-05 18:54:52 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-05 19:05:59 +0900 |
| commit | 771af909e74927126fba90ec6e0298dc68d5bf4f (patch) | |
| tree | e03837162c9ab8ed4908621f623b6d49ec1588a2 /src/dialogs/tqdialog.h | |
| parent | d9f24c630d3a86190017de303bc5750e532cdb61 (diff) | |
| download | tqt-771af909e74927126fba90ec6e0298dc68d5bf4f.tar.gz tqt-771af909e74927126fba90ec6e0298dc68d5bf4f.zip | |
Replace TRUE/FALSE with boolean values true/false - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/dialogs/tqdialog.h')
| -rw-r--r-- | src/dialogs/tqdialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/tqdialog.h b/src/dialogs/tqdialog.h index e1d82c179..786be4cf5 100644 --- a/src/dialogs/tqdialog.h +++ b/src/dialogs/tqdialog.h @@ -60,7 +60,7 @@ friend class TQPushButton; TQ_PROPERTY( bool modal READ isModal WRITE setModal ) public: - Q_EXPLICIT TQDialog( TQWidget* parent=0, const char* name=0, bool modal=FALSE, + Q_EXPLICIT TQDialog( TQWidget* parent=0, const char* name=0, bool modal=false, WFlags f=0 ); ~TQDialog(); @@ -127,7 +127,7 @@ private: uint has_relpos : 1; uint did_resize : 1; uint in_loop: 1; - void adjustPositionInternal( TQWidget*, bool useRelPos = FALSE ); + void adjustPositionInternal( TQWidget*, bool useRelPos = false ); TQDialogPrivate* d; private: // Disabled copy constructor and operator= |
