summaryrefslogtreecommitdiffstats
path: root/doc/html/tqcombotableitem.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqcombotableitem.html
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-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/tqcombotableitem.html')
-rw-r--r--doc/html/tqcombotableitem.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/tqcombotableitem.html b/doc/html/tqcombotableitem.html
index e90829e77..01efafc66 100644
--- a/doc/html/tqcombotableitem.html
+++ b/doc/html/tqcombotableitem.html
@@ -38,7 +38,7 @@ comboboxes in TQTables.
<p><a href="tqcombotableitem-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
-<li class=fn><a href="#TQComboTableItem"><b>TQComboTableItem</b></a> ( TQTable&nbsp;*&nbsp;table, const&nbsp;TQStringList&nbsp;&amp;&nbsp;list, bool&nbsp;editable = FALSE )</li>
+<li class=fn><a href="#TQComboTableItem"><b>TQComboTableItem</b></a> ( TQTable&nbsp;*&nbsp;table, const&nbsp;TQStringList&nbsp;&amp;&nbsp;list, bool&nbsp;editable = false )</li>
<li class=fn><a href="#~TQComboTableItem"><b>~TQComboTableItem</b></a> ()</li>
<li class=fn>virtual void <a href="#setCurrentItem"><b>setCurrentItem</b></a> ( int&nbsp;i )</li>
<li class=fn>virtual void <a href="#setCurrentItem-2"><b>setCurrentItem</b></a> ( const&nbsp;TQString&nbsp;&amp;&nbsp;s )</li>
@@ -75,7 +75,7 @@ current item can be set with <a href="#setCurrentItem">setCurrentItem</a>() and
<a href="#currentItem">currentItem</a>(). The text of the current item can be obtained with
<a href="#currentText">currentText</a>(), and the text of a particular item can be retrieved
with <a href="#text">text</a>().
-<p> If <a href="#isEditable">isEditable</a>() is TRUE the TQComboTableItem will permit the user
+<p> If <a href="#isEditable">isEditable</a>() is true the TQComboTableItem will permit the user
to either choose an existing list item, or create a new list item
by entering their own text; otherwise the user may only choose one
of the existing list items.
@@ -89,14 +89,14 @@ number (see <a href="#rtti">rtti</a>()).
<p> <p>See also <a href="tqchecktableitem.html">TQCheckTableItem</a>, <a href="tqtableitem.html">TQTableItem</a>, <a href="tqcombobox.html">TQComboBox</a>, and <a href="advanced.html">Advanced Widgets</a>.
<hr><h2>Member Function Documentation</h2>
-<h3 class=fn><a name="TQComboTableItem"></a>TQComboTableItem::TQComboTableItem ( <a href="tqtable.html">TQTable</a>&nbsp;*&nbsp;table, const&nbsp;<a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;list, bool&nbsp;editable = FALSE )
+<h3 class=fn><a name="TQComboTableItem"></a>TQComboTableItem::TQComboTableItem ( <a href="tqtable.html">TQTable</a>&nbsp;*&nbsp;table, const&nbsp;<a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;list, bool&nbsp;editable = false )
</h3>
Creates a combo table item for the table <em>table</em>. The combobox's
list of items is passed in the <em>list</em> argument. If <em>editable</em> is
-TRUE the user may type in new list items; if <em>editable</em> is FALSE
+true the user may type in new list items; if <em>editable</em> is false
the user may only select from the list of items provided.
<p> By default TQComboTableItems cannot be replaced by other table
-items since <a href="tqtableitem.html#isReplaceable">isReplaceable</a>() returns FALSE by default.
+items since <a href="tqtableitem.html#isReplaceable">isReplaceable</a>() returns false by default.
<p> <p>See also <a href="tqtable.html#clearCell">TQTable::clearCell</a>() and <a href="tqtableitem.html#EditType-enum">EditType</a>.
<h3 class=fn><a name="~TQComboTableItem"></a>TQComboTableItem::~TQComboTableItem ()
@@ -119,8 +119,8 @@ Returns the text of the combo table item's current list item.
<h3 class=fn>bool <a name="isEditable"></a>TQComboTableItem::isEditable () const
</h3>
-Returns TRUE if the user can add their own list items to the
-combobox's list of items; otherwise returns FALSE.
+Returns true if the user can add their own list items to the
+combobox's list of items; otherwise returns false.
<p> <p>See also <a href="#setEditable">setEditable</a>().
<h3 class=fn>int <a name="rtti"></a>TQComboTableItem::rtti () const<tt> [virtual]</tt>
@@ -150,8 +150,8 @@ current list item. Does nothing if no list item has the text <em>s</em>.
<h3 class=fn>void <a name="setEditable"></a>TQComboTableItem::setEditable ( bool&nbsp;b )<tt> [virtual]</tt>
</h3>
-If <em>b</em> is TRUE the combo table item can be edited, i.e. the user
-may enter a new text item themselves. If <em>b</em> is FALSE the user may
+If <em>b</em> is true the combo table item can be edited, i.e. the user
+may enter a new text item themselves. If <em>b</em> is false the user may
may only choose one of the existing items.
<p> <p>See also <a href="#isEditable">isEditable</a>().