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/i18n-example.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/i18n-example.html')
-rw-r--r-- | doc/html/i18n-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/i18n-example.html b/doc/html/i18n-example.html index 8d17ef04f..74a055f48 100644 --- a/doc/html/i18n-example.html +++ b/doc/html/i18n-example.html @@ -187,11 +187,11 @@ void <a name="f526"></a>MyWidget::initChoices(TQWidget* parent) class TQVDialog : public <a href="tqdialog.html">TQDialog</a> { public: - TQVDialog(TQWidget *parent=0, const char *name=0, bool modal=FALSE, + TQVDialog(TQWidget *parent=0, const char *name=0, bool modal=false, WFlags f=0) : <a href="tqdialog.html">TQDialog</a>(parent,name,modal,f) { <a href="tqvboxlayout.html">TQVBoxLayout</a>* vb = new <a href="tqvboxlayout.html">TQVBoxLayout</a>(this,8); -<a name="x1938"></a> vb-><a href="tqlayout.html#setAutoAdd">setAutoAdd</a>(TRUE); +<a name="x1938"></a> vb-><a href="tqlayout.html#setAutoAdd">setAutoAdd</a>(true); hb = 0; sm = new <a href="tqsignalmapper.html">TQSignalMapper</a>(this); <a name="x1946"></a> connect(sm,TQ_SIGNAL(<a href="tqsignalmapper.html#mapped">mapped</a>(int)),this,TQ_SLOT(done(int))); @@ -267,7 +267,7 @@ int main( int argc, char** argv ) lang = argv[1]; if ( argc != 2 || lang == "all" ) { - TQVDialog dlg(0,0,TRUE); + TQVDialog dlg(0,0,true); TQCheckBox* qmb[sizeof(qm)/sizeof(qm[0])]; int r; if ( lang == "all" ) { @@ -319,7 +319,7 @@ int main( int argc, char** argv ) } #ifdef USE_I18N_FONT - memorymanager->savePrerenderedFont(font.handle(),FALSE); + memorymanager->savePrerenderedFont(font.handle(),false); #endif // While we run "all", kill them all |