summaryrefslogtreecommitdiffstats
path: root/src/widgets/tqgrid.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-26 14:08:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-27 22:38:28 +0900
commit50326e196a9245af21604da7dc3a36eea52784ed (patch)
tree955f50c739379c59d3846c5c6ec25c8f5856fb91 /src/widgets/tqgrid.cpp
parent854c5d5c9cfd48a2d5a17366fb6805219eab4859 (diff)
downloadtqt-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/tqgrid.cpp')
-rw-r--r--src/widgets/tqgrid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/tqgrid.cpp b/src/widgets/tqgrid.cpp
index 19e7e2964..51c3b6266 100644
--- a/src/widgets/tqgrid.cpp
+++ b/src/widgets/tqgrid.cpp
@@ -85,7 +85,7 @@ TQGrid::TQGrid( int n, Orientation orient, TQWidget *parent, const char *name,
nRows = n;
}
lay = new TQGridLayout( this, nRows, nCols, 0, 0, name );
- lay->setAutoAdd( TRUE );
+ lay->setAutoAdd( true );
}
@@ -99,7 +99,7 @@ TQGrid::TQGrid( int n, TQWidget *parent, const char *name, WFlags f )
: TQFrame( parent, name, f )
{
lay = new TQGridLayout( this, -1, n, 0, 0, name );
- lay->setAutoAdd( TRUE );
+ lay->setAutoAdd( true );
}