summaryrefslogtreecommitdiffstats
path: root/puic/subclassing.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 13:19:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 13:19:41 +0900
commitf3c7a90bfa0646afefeaa7af84edf625cdadf78d (patch)
tree2b3194f56e43728f5bfdb95d7c78b71694d55497 /puic/subclassing.cpp
parent0e72ac24e5ebb8c31003af380befd215e7509ce1 (diff)
downloadlibtqt-perl-f3c7a90bfa0646afefeaa7af84edf625cdadf78d.tar.gz
libtqt-perl-f3c7a90bfa0646afefeaa7af84edf625cdadf78d.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'puic/subclassing.cpp')
-rw-r--r--puic/subclassing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/puic/subclassing.cpp b/puic/subclassing.cpp
index fb7329f..5287e55 100644
--- a/puic/subclassing.cpp
+++ b/puic/subclassing.cpp
@@ -65,7 +65,7 @@ void Uic::createSubImpl( const TQDomElement &e, const TQString& subClass )
} else if ( objClass == "TQt::MainWindow" ) {
out << indent << "shift->SUPER::NEW(@_[0..2]);" << endl;
out << indent << "statusBar();" << endl;
- isMainWindow = TRUE;
+ isMainWindow = true;
} else {
out << indent << "shift->SUPER::NEW(@_[0,1]);" << endl;
}