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/tqiconview-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/tqiconview-h.html')
-rw-r--r-- | doc/html/tqiconview-h.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/tqiconview-h.html b/doc/html/tqiconview-h.html index a773016f5..e1be4d001 100644 --- a/doc/html/tqiconview-h.html +++ b/doc/html/tqiconview-h.html @@ -212,8 +212,8 @@ public: int height() const; TQSize size() const; TQPoint pos() const; - TQRect textRect( bool relative = TRUE ) const; - TQRect pixmapRect( bool relative = TRUE ) const; + TQRect textRect( bool relative = true ) const; + TQRect pixmapRect( bool relative = true ) const; bool contains( const TQPoint& pnt ) const; bool intersects( const TQRect& r ) const; @@ -230,8 +230,8 @@ public: #ifndef TQT_NO_PICTURE virtual void setPicture( const TQPicture &icon ); #endif - virtual void setText( const TQString &text, bool recalc, bool redraw = TRUE ); - virtual void setPixmap( const TQPixmap &icon, bool recalc, bool redraw = TRUE ); + virtual void setText( const TQString &text, bool recalc, bool redraw = true ); + virtual void setPixmap( const TQPixmap &icon, bool recalc, bool redraw = true ); virtual void setKey( const TQString &k ); virtual int rtti() const; @@ -353,7 +353,7 @@ public: TQIconViewItem *lastItem() const; TQIconViewItem *currentItem() const; virtual void setCurrentItem( TQIconViewItem *item ); - virtual void setSelected( TQIconViewItem *item, bool s, bool cb = FALSE ); + virtual void setSelected( TQIconViewItem *item, bool s, bool cb = false ); uint count() const; @@ -401,7 +401,7 @@ public: virtual void setShowToolTips( bool b ); bool showToolTips() const; - void setSorting( bool sort, bool ascending = TRUE ); + void setSorting( bool sort, bool ascending = true ); bool sorting() const; bool sortDirection() const; @@ -415,7 +415,7 @@ public: TQSize minimumSizeHint() const; TQSize sizeHint() const; - virtual void sort( bool ascending = TRUE ); + virtual void sort( bool ascending = true ); virtual void setFont( const TQFont & ); virtual void setPalette( const TQPalette & ); @@ -423,8 +423,8 @@ public: bool isRenaming() const; public slots: - virtual void arrangeItemsInGrid( const TQSize &grid, bool update = TRUE ); - virtual void arrangeItemsInGrid( bool update = TRUE ); + virtual void arrangeItemsInGrid( const TQSize &grid, bool update = true ); + virtual void arrangeItemsInGrid( bool update = true ); virtual void setContentsPos( int x, int y ); virtual void updateContents(); @@ -508,7 +508,7 @@ private: void drawContents( TQPainter* ); TQIconViewItem* findItemByName( TQIconViewItem *start ); void handleItemChange( TQIconViewItem *old, bool shift, - bool control, bool homeend = FALSE); + bool control, bool homeend = false); int calcGridNum( int w, int x ) const; TQIconViewItem *rowBegin( TQIconViewItem *item ) const; |