diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-26 14:08:52 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-27 22:38:28 +0900 |
| commit | 50326e196a9245af21604da7dc3a36eea52784ed (patch) | |
| tree | 955f50c739379c59d3846c5c6ec25c8f5856fb91 /src/widgets/tqtextview.cpp | |
| parent | 854c5d5c9cfd48a2d5a17366fb6805219eab4859 (diff) | |
| download | tqt-50326e196a9245af21604da7dc3a36eea52784ed.tar.gz tqt-50326e196a9245af21604da7dc3a36eea52784ed.zip | |
Replace TRUE/FALSE with boolean values true/false - part 10
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/widgets/tqtextview.cpp')
| -rw-r--r-- | src/widgets/tqtextview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/tqtextview.cpp b/src/widgets/tqtextview.cpp index a475d7b4a..febf8a047 100644 --- a/src/widgets/tqtextview.cpp +++ b/src/widgets/tqtextview.cpp @@ -48,7 +48,7 @@ \obsolete This class wraps a read-only \l TQTextEdit. - Use a \l TQTextEdit instead, and call setReadOnly(TRUE) + Use a \l TQTextEdit instead, and call setReadOnly(true) to disable editing. */ @@ -58,7 +58,7 @@ TQTextView::TQTextView( const TQString& text, const TQString& context, TQWidget *parent, const char *name ) : TQTextEdit( text, context, parent, name ) { - setReadOnly( TRUE ); + setReadOnly( true ); } /*! \reimp */ @@ -66,7 +66,7 @@ TQTextView::TQTextView( const TQString& text, const TQString& context, TQTextView::TQTextView( TQWidget *parent, const char *name ) : TQTextEdit( parent, name ) { - setReadOnly( TRUE ); + setReadOnly( true ); } /*! \reimp */ |
