summaryrefslogtreecommitdiffstats
path: root/doc/html/regexptester-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-24 19:37:05 +0900
commit0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch)
treebe5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/regexptester-example.html
parent1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff)
downloadtqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz
tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/regexptester-example.html')
-rw-r--r--doc/html/regexptester-example.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/regexptester-example.html b/doc/html/regexptester-example.html
index 794c8857b..0666ff806 100644
--- a/doc/html/regexptester-example.html
+++ b/doc/html/regexptester-example.html
@@ -65,9 +65,9 @@ public:
RegexpTester(TQWidget* parent=0, const char* name=0, bool modal=false,
WFlags f=0);
- <a href="ntqlabel.html">TQLabel</a> *regexLabel;
+ <a href="tqlabel.html">TQLabel</a> *regexLabel;
<a href="ntqcombobox.html">TQComboBox</a> *regexComboBox;
- <a href="ntqlabel.html">TQLabel</a> *textLabel;
+ <a href="tqlabel.html">TQLabel</a> *textLabel;
<a href="ntqcombobox.html">TQComboBox</a> *textComboBox;
<a href="ntqcheckbox.html">TQCheckBox</a> *caseSensitiveCheckBox;
<a href="ntqcheckbox.html">TQCheckBox</a> *minimalCheckBox;
@@ -95,7 +95,7 @@ private:
#include &lt;<a href="qcheckbox-h.html">ntqcheckbox.h</a>&gt;
#include &lt;<a href="tqclipboard-h.html">tqclipboard.h</a>&gt;
#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
-#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
+#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
#include &lt;<a href="tqregexp-h.html">tqregexp.h</a>&gt;
@@ -109,16 +109,16 @@ private:
WFlags f)
: <a href="ntqdialog.html">TQDialog</a>(parent, name, modal, f)
{
- regexLabel = new <a href="ntqlabel.html">TQLabel</a>(this);
+ regexLabel = new <a href="tqlabel.html">TQLabel</a>(this);
regexComboBox = new <a href="ntqcombobox.html">TQComboBox</a>(this);
<a name="x2480"></a> regexComboBox-&gt;<a href="ntqcombobox.html#setEditable">setEditable</a>(true);
<a name="x2507"></a> regexComboBox-&gt;<a href="tqwidget.html#setSizePolicy">setSizePolicy</a>(TQSizePolicy::Expanding, TQSizePolicy::Preferred);
-<a name="x2482"></a> regexLabel-&gt;<a href="ntqlabel.html#setBuddy">setBuddy</a>(regexComboBox);
- textLabel = new <a href="ntqlabel.html">TQLabel</a>(this);
+<a name="x2482"></a> regexLabel-&gt;<a href="tqlabel.html#setBuddy">setBuddy</a>(regexComboBox);
+ textLabel = new <a href="tqlabel.html">TQLabel</a>(this);
textComboBox = new <a href="ntqcombobox.html">TQComboBox</a>(this);
textComboBox-&gt;<a href="ntqcombobox.html#setEditable">setEditable</a>(true);
textComboBox-&gt;<a href="tqwidget.html#setSizePolicy">setSizePolicy</a>(TQSizePolicy::Expanding, TQSizePolicy::Preferred);
- textLabel-&gt;<a href="ntqlabel.html#setBuddy">setBuddy</a>(textComboBox);
+ textLabel-&gt;<a href="tqlabel.html#setBuddy">setBuddy</a>(textComboBox);
caseSensitiveCheckBox = new <a href="ntqcheckbox.html">TQCheckBox</a>(this);
<a name="x2475"></a> caseSensitiveCheckBox-&gt;<a href="ntqcheckbox.html#setChecked">setChecked</a>(true);
minimalCheckBox = new <a href="ntqcheckbox.html">TQCheckBox</a>(this);
@@ -258,9 +258,9 @@ void <a name="f558"></a>RegexpTester::copy()
void <a name="f559"></a>RegexpTester::languageChange()
{
<a href="tqwidget.html#setCaption">setCaption</a>(<a href="tqobject.html#tr">tr</a>("Regex Tester"));
- regexLabel-&gt;<a href="ntqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&amp;Regex:"));
+ regexLabel-&gt;<a href="tqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&amp;Regex:"));
<a name="x2479"></a> regexComboBox-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>(<a href="tqobject.html#tr">tr</a>("[A-Z]+=(\\d+):(\\d*)"));
- textLabel-&gt;<a href="ntqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&amp;Text:"));
+ textLabel-&gt;<a href="tqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&amp;Text:"));
textComboBox-&gt;<a href="ntqcombobox.html#insertItem">insertItem</a>(<a href="tqobject.html#tr">tr</a>("ABC=12:3456"));
<a name="x2473"></a> caseSensitiveCheckBox-&gt;<a href="ntqbutton.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("Case &amp;Sensitive"));
minimalCheckBox-&gt;<a href="ntqbutton.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&amp;Minimal"));