diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:58:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 13:58:57 +0900 |
commit | 6d1638620f3da1664aa3b86c46852515fc78707c (patch) | |
tree | d8d2ca04431fee08138033dc6129f08a381b3334 /doc/html/EditDlg_8cpp-source.html | |
parent | 03d321be2d68dcdb1577ed5a72188265f92647f3 (diff) | |
download | kshowmail-6d1638620f3da1664aa3b86c46852515fc78707c.tar.gz kshowmail-6d1638620f3da1664aa3b86c46852515fc78707c.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/EditDlg_8cpp-source.html')
-rw-r--r-- | doc/html/EditDlg_8cpp-source.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/EditDlg_8cpp-source.html b/doc/html/EditDlg_8cpp-source.html index 009679b..8967c66 100644 --- a/doc/html/EditDlg_8cpp-source.html +++ b/doc/html/EditDlg_8cpp-source.html @@ -40,7 +40,7 @@ <a name="l00023"></a>00023 <span class="comment"> * name 'name' and widget flags set to 'f'.</span> <a name="l00024"></a>00024 <span class="comment"> *</span> <a name="l00025"></a>00025 <span class="comment"> * The dialog will by default be modeless, unless you set 'modal' to</span> -<a name="l00026"></a>00026 <span class="comment"> * TRUE to construct a modal dialog.</span> +<a name="l00026"></a>00026 <span class="comment"> * true to construct a modal dialog.</span> <a name="l00027"></a>00027 <span class="comment"> */</span> <a name="l00028"></a><a class="code" href="classEditDlg.html#1a0993a8c1b96893a290c3c7b8ce0a18">00028</a> <a class="code" href="classEditDlg.html#1a0993a8c1b96893a290c3c7b8ce0a18">EditDlg::EditDlg</a>( TQWidget* parent, <span class="keyword">const</span> <span class="keywordtype">char</span>* name, <span class="keywordtype">bool</span> modal, WFlags fl ) <a name="l00029"></a>00029 : TQDialog( parent, name, modal, fl ) @@ -55,8 +55,8 @@ <a name="l00038"></a>00038 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a> = <span class="keyword">new</span> KTextBrowser( <span class="keyword">this</span>, <span class="stringliteral">"m_Edit"</span> ); <a name="l00039"></a>00039 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a>->setFocusPolicy( KTextBrowser::TabFocus ); <a name="l00040"></a>00040 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a>->setTextFormat( KTextBrowser::AutoText ); -<a name="l00041"></a>00041 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a>->setReadOnly( TRUE ); -<a name="l00042"></a>00042 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a>->setUndoRedoEnabled( FALSE ); +<a name="l00041"></a>00041 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a>->setReadOnly( true ); +<a name="l00042"></a>00042 <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a>->setUndoRedoEnabled( false ); <a name="l00043"></a>00043 <a class="code" href="classEditDlg.html#121ab750fca3f5077ec34c90edc8fb2e">EditDlgLayout</a>->addWidget( <a class="code" href="classEditDlg.html#e0c63f69593ec302266eb0adde25423c">m_Edit</a> ); <a name="l00044"></a>00044 <a name="l00045"></a>00045 <a class="code" href="classEditDlg.html#7b993caff60b9567e77dd966e0a03d12">layout3</a> = <span class="keyword">new</span> TQHBoxLayout( 0, 0, 6, <span class="stringliteral">"layout3"</span>); |