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-03 10:33:33 +0900
commit35ae72ca02b756a4829dca2f3642652739b6a2bd (patch)
tree0d13159afe4f3eba0fdb7cc23372667794b96e8e /puic/subclassing.cpp
parent8e2be4fd190957e3fc2c37ab19deed3299f4e3d3 (diff)
downloadlibtqt-perl-r14.1.4.tar.gz
libtqt-perl-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4r14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f3c7a90bfa0646afefeaa7af84edf625cdadf78d)
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 7f0e127..db3f8da 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;
}