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/tqtextedit-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/tqtextedit-h.html')
-rw-r--r-- | doc/html/tqtextedit-h.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tqtextedit-h.html b/doc/html/tqtextedit-h.html index 4dca3d3fd..d313cc116 100644 --- a/doc/html/tqtextedit-h.html +++ b/doc/html/tqtextedit-h.html @@ -266,7 +266,7 @@ public: void getSelection( int *paraFrom, int *indexFrom, int *paraTo, int *indexTo, int selNum = 0 ) const; - virtual bool find( const TQString &expr, bool cs, bool wo, bool forward = TRUE, + virtual bool find( const TQString &expr, bool cs, bool wo, bool forward = true, int *para = 0, int *index = 0 ); int paragraphs() const; @@ -362,7 +362,7 @@ public slots: virtual void setText( const TQString &txt, const TQString &context ); virtual void setTextFormat( TextFormat f ); - virtual void selectAll( bool select = TRUE ); + virtual void selectAll( bool select = true ); virtual void setTabStopWidth( int ts ); virtual void zoomIn( int range ); virtual void zoomIn() { zoomIn( 1 ); } @@ -417,7 +417,7 @@ public slots: void insert( const TQString &text, uint insertionFlags = CheckNewLines | RemoveSelected ); // ## virtual in 4.0 // obsolete - virtual void insert( const TQString &text, bool, bool = TRUE, bool = TRUE ); + virtual void insert( const TQString &text, bool, bool = true, bool = true ); virtual void insertAt( const TQString &text, int para, int index ); virtual void removeParagraph( int para ); @@ -526,7 +526,7 @@ private: void updateCursor( const TQPoint & pos ); void handleMouseMove( const TQPoint& pos ); void drawContents( TQPainter * ); - virtual bool linksEnabled() const { return FALSE; } + virtual bool linksEnabled() const { return false; } void init(); void checkUndoRedoInfo( UndoRedoInfo::Type t ); void updateCurrentFormat(); @@ -546,7 +546,7 @@ private: virtual void emitHighlighted( const TQString & ) {} virtual void emitLinkClicked( const TQString & ) {} - void readFormats( TQTextCursor &c1, TQTextCursor &c2, TQTextString &text, bool fillStyles = FALSE ); + void readFormats( TQTextCursor &c1, TQTextCursor &c2, TQTextString &text, bool fillStyles = false ); void clearUndoRedo(); void paintDocument( bool drawAll, TQPainter *p, int cx = -1, int cy = -1, int cw = -1, int ch = -1 ); void moveCursor( CursorAction action ); |