diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-07 16:34:47 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-07 18:26:20 +0900 |
| commit | 0599e57edd9b4998aa99b0a14f4d83c2b9390b29 (patch) | |
| tree | 0f9cf5d922e8c354348e50872fe00aa6ee9136cf /kpovmodeler/pmlibraryiconview.cpp | |
| parent | 063aaff4032126e6e0685865142dea3102a6eff7 (diff) | |
| download | tdegraphics-0599e57e.tar.gz tdegraphics-0599e57e.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c7c1795c817c1f7b89046c6d9f24379143f0bf6b)
Diffstat (limited to 'kpovmodeler/pmlibraryiconview.cpp')
| -rw-r--r-- | kpovmodeler/pmlibraryiconview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpovmodeler/pmlibraryiconview.cpp b/kpovmodeler/pmlibraryiconview.cpp index fcaead42..4f60e4d1 100644 --- a/kpovmodeler/pmlibraryiconview.cpp +++ b/kpovmodeler/pmlibraryiconview.cpp @@ -176,12 +176,12 @@ TQDragObject* PMLibraryIconView::dragObject( ) TQIconDragItem id; id.setData( TQCString( item->path( ).latin1( ) ) ); drag->append( id, - TQRect( item->pixmapRect( FALSE ).x( ) - orig.x( ), - item->pixmapRect( FALSE ).y( ) - orig.y( ), + TQRect( item->pixmapRect( false ).x( ) - orig.x( ), + item->pixmapRect( false ).y( ) - orig.y( ), item->pixmapRect( ).width( ), item->pixmapRect( ).height( ) ), - TQRect( item->textRect( FALSE ).x( ) - orig.x( ), - item->textRect( FALSE ).y( ) - orig.y( ), + TQRect( item->textRect( false ).x( ) - orig.x( ), + item->textRect( false ).y( ) - orig.y( ), item->textRect().width( ), item->textRect( ).height( ) ), item->path( ), |
