diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqmultilineedit-h.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqmultilineedit-h.html')
-rw-r--r-- | doc/html/tqmultilineedit-h.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/tqmultilineedit-h.html b/doc/html/tqmultilineedit-h.html index 813333b12..9d5167b5e 100644 --- a/doc/html/tqmultilineedit-h.html +++ b/doc/html/tqmultilineedit-h.html @@ -104,12 +104,12 @@ public: virtual void insertLine( const TQString &s, int line = -1 ); virtual void insertAt( const TQString &s, int line, int col ) { - insertAt( s, line, col, FALSE ); + insertAt( s, line, col, false ); } virtual void insertAt( const TQString &s, int line, int col, bool mark ); virtual void removeLine( int line ); virtual void setCursorPosition( int line, int col ) { - setCursorPosition( line, col, FALSE ); + setCursorPosition( line, col, false ); } virtual void setCursorPosition( int line, int col, bool mark ); bool atBeginning() const; @@ -128,7 +128,7 @@ public: void cursorWordBackward( bool mark ); // noops - bool autoUpdate() const { return TRUE; } + bool autoUpdate() const { return true; } virtual void setAutoUpdate( bool ) {} int totalWidth() const { return contentsWidth(); } @@ -138,7 +138,7 @@ public: void setMaxLines( int ) {} public slots: - void deselect() { selectAll( FALSE ); } + void deselect() { selectAll( false ); } protected: TQPoint cursorPoint() const; @@ -147,15 +147,15 @@ protected: virtual void insertAndMark( const TQString&, bool mark ); virtual void newLine(); virtual void killLine(); - virtual void pageUp( bool mark=FALSE ); - virtual void pageDown( bool mark=FALSE ); - virtual void cursorLeft( bool mark=FALSE, bool wrap = TRUE ); - virtual void cursorRight( bool mark=FALSE, bool wrap = TRUE ); - virtual void cursorUp( bool mark=FALSE ); - virtual void cursorDown( bool mark=FALSE ); + virtual void pageUp( bool mark=false ); + virtual void pageDown( bool mark=false ); + virtual void cursorLeft( bool mark=false, bool wrap = true ); + virtual void cursorRight( bool mark=false, bool wrap = true ); + virtual void cursorUp( bool mark=false ); + virtual void cursorDown( bool mark=false ); virtual void backspace(); - virtual void home( bool mark=FALSE ); - virtual void end( bool mark=FALSE ); + virtual void home( bool mark=false ); + virtual void end( bool mark=false ); bool getMarkedRegion( int *line1, int *col1, int *line2, int *col2 ) const; |