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/listboxcombo-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/listboxcombo-example.html')
-rw-r--r-- | doc/html/listboxcombo-example.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html index f13c05176..d6e0a0a88 100644 --- a/doc/html/listboxcombo-example.html +++ b/doc/html/listboxcombo-example.html @@ -107,7 +107,7 @@ public: MyListBoxItem() : <a href="tqlistboxitem.html">TQListBoxItem</a>() { - setCustomHighlighting( TRUE ); + setCustomHighlighting( true ); } protected: @@ -178,7 +178,7 @@ protected: box1-><a href="tqhbox.html#setSpacing">setSpacing</a>( 5 ); // Create a non-editable Combobox and a label below... - <a href="tqcombobox.html">TQComboBox</a> *cb1 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, box1 ); + <a href="tqcombobox.html">TQComboBox</a> *cb1 = new <a href="tqcombobox.html">TQComboBox</a>( false, box1 ); label1 = new <a href="tqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box1 ); <a name="x1416"></a><a name="x1404"></a> label1-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label1-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 ); <a name="x1401"></a> label1-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); @@ -196,7 +196,7 @@ protected: box2-><a href="tqhbox.html#setSpacing">setSpacing</a>( 5 ); // Create an editable Combobox and a label below... - <a href="tqcombobox.html">TQComboBox</a> *cb2 = new <a href="tqcombobox.html">TQComboBox</a>( TRUE, box2 ); + <a href="tqcombobox.html">TQComboBox</a> *cb2 = new <a href="tqcombobox.html">TQComboBox</a>( true, box2 ); label2 = new <a href="tqlabel.html">TQLabel</a>( "Current Item: Combobox Item 0", box2 ); label2-><a href="tqwidget.html#setMaximumHeight">setMaximumHeight</a>( label2-><a href="tqwidget.html#sizeHint">sizeHint</a>().height() * 2 ); label2-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); |