diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/tutorial2.doc | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/tutorial2.doc')
-rw-r--r-- | doc/tutorial2.doc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tutorial2.doc b/doc/tutorial2.doc index 6fb8acca3..79818ebf6 100644 --- a/doc/tutorial2.doc +++ b/doc/tutorial2.doc @@ -144,7 +144,7 @@ enumerations. The \c Element class does not derive from \link ntqt.html Qt\endlink, so we need to include \c ntqnamespace.h to have access to the TQt enum names. An alternative approach would have been to have made \c Element a \link ntqt.html Qt\endlink subclass. We include \c -ntqstring.h to make use of Qt's Unicode strings. As a convenience we +tqstring.h to make use of Qt's Unicode strings. As a convenience we will \c typedef a vector container for \c{Element}s, which is why we pull in the \c tqvaluevector.h header. @@ -250,7 +250,7 @@ filter the data using a scripting language. \printto const Our implementation of the operators requires the inclusion of \c -ntqtextstream.h and \c ntqstringlist.h. +ntqtextstream.h and \c tqstringlist.h. \printto Element @@ -284,7 +284,7 @@ separator. The final field is the label followed by a newline. \printline To read an element we read one record (i.e. one line). We break the -data into fields using QStringList::split(). Because it is possible +data into fields using TQStringList::split(). Because it is possible that a label will contain \c FIELD_SEP characters we use TQString::section() to extract all the text from the last field to the end of the line. If there are enough fields and the value, colors and @@ -621,7 +621,7 @@ tutorial2-07.html File Handling\endlink) to perform the save. \section1 Managing a list of Recently Opened Files \quotefile chart/chartform.h -\skipto QStringList m_recentFiles +\skipto TQStringList m_recentFiles \printline We hold the list of recently opened files in a string list. |