diff options
Diffstat (limited to 'doc/html/ntqapplication.html')
-rw-r--r-- | doc/html/ntqapplication.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/ntqapplication.html b/doc/html/ntqapplication.html index 2df65894c..ef34d5a9b 100644 --- a/doc/html/ntqapplication.html +++ b/doc/html/ntqapplication.html @@ -178,7 +178,7 @@ flow and main settings. <li class=fn>void <a href="#qFatal"><b>qFatal</b></a> ( const char * msg, ... )</li> <li class=fn>void <a href="#qSystemWarning"><b>qSystemWarning</b></a> ( const char * msg, int code )</li> <li class=fn>void <a href="#Q_ASSERT"><b>Q_ASSERT</b></a> ( bool test )</li> -<li class=fn>void <a href="#Q_CHECK_PTR"><b>Q_CHECK_PTR</b></a> ( void * p )</li> +<li class=fn>void <a href="#TQ_CHECK_PTR"><b>TQ_CHECK_PTR</b></a> ( void * p )</li> <li class=fn>TQtMsgHandler <a href="#qInstallMsgHandler"><b>qInstallMsgHandler</b></a> ( TQtMsgHandler h )</li> </ul> <hr><a name="details"></a><h2>Detailed Description</h2> @@ -1808,7 +1808,7 @@ message using the <a href="#qWarning">qWarning</a>() function: <p> <p>See also <a href="#qWarning">qWarning</a>() and <a href="debug.html">Debugging</a>. -<h3 class=fn>void <a name="Q_CHECK_PTR"></a>Q_CHECK_PTR ( void * p ) +<h3 class=fn>void <a name="TQ_CHECK_PTR"></a>TQ_CHECK_PTR ( void * p ) </h3> <p> @@ -1819,10 +1819,10 @@ name and line number, saying that the program ran out of memory. <pre> int *a; - <a href="#Q_CHECK_PTR">Q_CHECK_PTR</a>( a = new int[80] ); // WRONG! + <a href="#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( a = new int[80] ); // WRONG! a = new (nothrow) int[80]; // Right - <a href="#Q_CHECK_PTR">Q_CHECK_PTR</a>( a ); + <a href="#TQ_CHECK_PTR">TQ_CHECK_PTR</a>( a ); </pre> <p> <p>See also <a href="#qWarning">qWarning</a>() and <a href="debug.html">Debugging</a>. @@ -2004,9 +2004,9 @@ defined. <p> Returns the TQt version number as a string, for example, "2.3.0" or "3.0.5". -<p> The <tt>QT_VERSION</tt> define has the numeric value in the form: +<p> The <tt>TQT_VERSION</tt> define has the numeric value in the form: 0xmmiibb (m = major, i = minor, b = bugfix). For example, TQt -3.0.5's <tt>QT_VERSION</tt> is 0x030005. +3.0.5's <tt>TQT_VERSION</tt> is 0x030005. <h3 class=fn>void <a name="qWarning"></a>qWarning ( const char * msg, ... ) </h3> |