diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/regexptester-example.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-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.html | 18 |
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 <<a href="qcheckbox-h.html">ntqcheckbox.h</a>> #include <<a href="tqclipboard-h.html">tqclipboard.h</a>> #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="tqregexp-h.html">tqregexp.h</a>> @@ -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-><a href="ntqcombobox.html#setEditable">setEditable</a>(true); <a name="x2507"></a> regexComboBox-><a href="tqwidget.html#setSizePolicy">setSizePolicy</a>(TQSizePolicy::Expanding, TQSizePolicy::Preferred); -<a name="x2482"></a> regexLabel-><a href="ntqlabel.html#setBuddy">setBuddy</a>(regexComboBox); - textLabel = new <a href="ntqlabel.html">TQLabel</a>(this); +<a name="x2482"></a> regexLabel-><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-><a href="ntqcombobox.html#setEditable">setEditable</a>(true); textComboBox-><a href="tqwidget.html#setSizePolicy">setSizePolicy</a>(TQSizePolicy::Expanding, TQSizePolicy::Preferred); - textLabel-><a href="ntqlabel.html#setBuddy">setBuddy</a>(textComboBox); + textLabel-><a href="tqlabel.html#setBuddy">setBuddy</a>(textComboBox); caseSensitiveCheckBox = new <a href="ntqcheckbox.html">TQCheckBox</a>(this); <a name="x2475"></a> caseSensitiveCheckBox-><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-><a href="ntqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&Regex:")); + regexLabel-><a href="tqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&Regex:")); <a name="x2479"></a> regexComboBox-><a href="ntqcombobox.html#insertItem">insertItem</a>(<a href="tqobject.html#tr">tr</a>("[A-Z]+=(\\d+):(\\d*)")); - textLabel-><a href="ntqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&Text:")); + textLabel-><a href="tqlabel.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&Text:")); textComboBox-><a href="ntqcombobox.html#insertItem">insertItem</a>(<a href="tqobject.html#tr">tr</a>("ABC=12:3456")); <a name="x2473"></a> caseSensitiveCheckBox-><a href="ntqbutton.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("Case &Sensitive")); minimalCheckBox-><a href="ntqbutton.html#setText">setText</a>(<a href="tqobject.html#tr">tr</a>("&Minimal")); |