summaryrefslogtreecommitdiffstats
path: root/doc/porting3.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/porting3.doc
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-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/porting3.doc')
-rw-r--r--doc/porting3.doc14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc
index 829a3fde7..0500b4ee4 100644
--- a/doc/porting3.doc
+++ b/doc/porting3.doc
@@ -104,8 +104,8 @@ header files. This speeds up compilation when you don't need those
nested header files. But in some cases you will find you need to add
an extra #include to your files.
-For example, if you get a message about QStringList or its functions
-not being defined, then add \c {#include <ntqstringlist.h>} at
+For example, if you get a message about TQStringList or its functions
+not being defined, then add \c {#include <tqstringlist.h>} at
the top of the file giving the error.
Header files that you might need to add #include directives for include:
@@ -113,9 +113,9 @@ Header files that you might need to add #include directives for include:
\i \c <ntqcursor.h>
\i \c <ntqpainter.h>
\i \c <ntqpen.h>
-\i \c <ntqstringlist.h>
+\i \c <tqstringlist.h>
\i \c <ntqregexp.h>
-\i \c <ntqstrlist.h>
+\i \c <tqstrlist.h>
\i \c <ntqstyle.h>
\i \c <tqvaluelist.h>
\endlist
@@ -335,7 +335,7 @@ new code.
\i QTranslator::find( const char *context, const char *sourceText, const char *comment = 0 ) const
\i QTranslator::insert( const char *context, const char *sourceText, const TQString \& translation )
\i QTranslator::remove( const char *context, const char *sourceText )
-\i QUriDrag::setFilenames( const QStringList \& fnames )
+\i QUriDrag::setFilenames( const TQStringList \& fnames )
\i TQWidget::backgroundColor() const
\i TQWidget::backgroundPixmap() const
\i TQWidget::iconify()
@@ -518,12 +518,12 @@ regular expressions. Both the regular expression syntax and the QRegExp
interface have been modified.
Be also aware that \c <ntqregexp.h> is no longer included
-automatically when you include \c <ntqstringlist.h>. See
+automatically when you include \c <tqstringlist.h>. See
\link #Headers above \endlink for details.
\omit
In TQt 3.0, ntqregexp.h has to
-include ntqstringlist.h, so it's no good to have ntqstringlist.h include ntqregexp.h,
+include tqstringlist.h, so it's no good to have tqstringlist.h include ntqregexp.h,
unless one wants to achieve an Escher effect.
\endomit