From 359640943bcf155faa9a067dde9e00a123276290 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Feb 2012 17:43:39 -0600 Subject: Automated update from Qt3 --- doc/html/ntqapplication.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/ntqapplication.html') 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.
  • void qFatal ( const char * msg, ... )
  • void qSystemWarning ( const char * msg, int code )
  • void Q_ASSERT ( bool test )
  • -
  • void Q_CHECK_PTR ( void * p )
  • +
  • void TQ_CHECK_PTR ( void * p )
  • TQtMsgHandler qInstallMsgHandler ( TQtMsgHandler h )

  • Detailed Description

    @@ -1808,7 +1808,7 @@ message using the qWarning() function:

    See also qWarning() and Debugging. -

    void Q_CHECK_PTR ( void * p ) +

    void TQ_CHECK_PTR ( void * p )

    @@ -1819,10 +1819,10 @@ name and line number, saying that the program ran out of memory.

             int *a;
     
    -        Q_CHECK_PTR( a = new int[80] );  // WRONG!
    +        TQ_CHECK_PTR( a = new int[80] );  // WRONG!
     
             a = new (nothrow) int[80];       // Right
    -        Q_CHECK_PTR( a );
    +        TQ_CHECK_PTR( a );
         

    See also qWarning() and Debugging. @@ -2004,9 +2004,9 @@ defined.

    Returns the TQt version number as a string, for example, "2.3.0" or "3.0.5". -

    The QT_VERSION define has the numeric value in the form: +

    The TQT_VERSION define has the numeric value in the form: 0xmmiibb (m = major, i = minor, b = bugfix). For example, TQt -3.0.5's QT_VERSION is 0x030005. +3.0.5's TQT_VERSION is 0x030005.

    void qWarning ( const char * msg, ... )

    -- cgit v1.2.3