2009-12-21 21:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbqt/generator/hbqtgen.prg
    ! Fixed to use 'hbqt_gcRelease_*' instead of 'release_*' names
      for public release callbacks.

  * contrib/hbqt/qth/QApplication.qth
    ! Fixed static vars to be prefixed with s_.

  * contrib/hbqt/*
    * Regenerated.
This commit is contained in:
Viktor Szakats
2009-12-21 20:58:40 +00:00
parent 4f2ad8ca5b
commit 01f1a2a081
263 changed files with 1757 additions and 1747 deletions

View File

@@ -17,6 +17,17 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-12-21 21:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/generator/hbqtgen.prg
! Fixed to use 'hbqt_gcRelease_*' instead of 'release_*' names
for public release callbacks.
* contrib/hbqt/qth/QApplication.qth
! Fixed static vars to be prefixed with s_.
* contrib/hbqt/*
* Regenerated.
2009-12-21 12:10 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/generator/qt45.qtp
* contrib/hbqt/hbqt.h

View File

@@ -540,14 +540,14 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc )
aadd( cpp_, " " )
ENDIF
ENDIF
aadd( cpp_, "QT_G_FUNC( release_" + cWidget + " )" )
aadd( cpp_, "QT_G_FUNC( hbqt_gcRelease_" + cWidget + " )" )
aadd( cpp_, "{" )
IF ( lDestructor ) .AND. ( lConst )
IF lObject
aadd( cpp_, " QGC_POINTER_" + cWidget + " * p = ( QGC_POINTER_" + cWidget + " * ) Cargo; " )
aadd( cpp_, " " )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "release_' + pad( cWidget, 27 ) + ' p=%p", p));')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "release_' + pad( cWidget, 27 ) + ' ph=%p pq=%p", p->ph, (void *)(p->pq)));')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_' + pad( cWidget, 27 ) + ' p=%p", p));')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_' + pad( cWidget, 27 ) + ' ph=%p pq=%p", p->ph, (void *)(p->pq)));')
aadd( cpp_, " " )
aadd( cpp_, " if( p && p->ph && p->pq ) " )
aadd( cpp_, " { " )
@@ -567,29 +567,29 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc )
aadd( cpp_, " break;" )
aadd( cpp_, " }" )
aadd( cpp_, " p->ph = NULL;" )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "release_' + pad( cWidget, 27 ) + ' Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_' + pad( cWidget, 27 ) + ' Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );')
aadd( cpp_, " }" )
aadd( cpp_, " else" )
aadd( cpp_, " {" )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "NO release_' + pad( cWidget, 27 ) + ' Object Name Missing!" ) );')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_' + pad( cWidget, 27 ) + ' Object Name Missing!" ) );')
aadd( cpp_, " }" )
ELSE
aadd( cpp_, " QGC_POINTER * p = ( QGC_POINTER * ) Cargo; " )
aadd( cpp_, " " )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "release_' + pad( cWidget, 27 ) + ' p=%p", p ) );' )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "release_' + pad( cWidget, 27 ) + ' ph=%p", p->ph ) );' )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_' + pad( cWidget, 27 ) + ' p=%p", p ) );' )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_' + pad( cWidget, 27 ) + ' ph=%p", p->ph ) );' )
aadd( cpp_, " " )
aadd( cpp_, " if( p && p->ph ) " )
aadd( cpp_, " { " )
aadd( cpp_, " delete ( ( " + cWidget + IF( lList, "< void * >", "" ) + " * ) p->ph ); " )
//aadd( cpp_, " ( ( " + cWidget + IF( lList, "< void * >", "" ) + " * ) p->ph )->~" + cWidget + "(); " )
aadd( cpp_, " p->ph = NULL;" )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "YES release_' + pad( cWidget, 27 ) + ' Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_' + pad( cWidget, 27 ) + ' Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );')
ENDIF
aadd( cpp_, " }" )
aadd( cpp_, " else" )
aadd( cpp_, " {" )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "DEL release_' + pad( cWidget, 27 ) + ' Object Already deleted!" ) );' )
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_' + pad( cWidget, 27 ) + ' Object Already deleted!" ) );' )
aadd( cpp_, " }" )
ELSE
aadd( cpp_, " HB_SYMBOL_UNUSED( Cargo );" )
@@ -597,10 +597,10 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc )
aadd( cpp_, "} " )
aadd( cpp_, " " )
ELSE
aadd( cpp_, "QT_G_FUNC( release_" + cWidget + " ) " )
aadd( cpp_, "QT_G_FUNC( hbqt_gcRelease_" + cWidget + " ) " )
aadd( cpp_, "{ " )
IF lDestructor
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "release_' + pad( cWidget, 27 ) + ' %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );')
aadd( cpp_, ' HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_' + pad( cWidget, 27 ) + ' %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );')
aadd( cpp_, "" )
aadd( cpp_, " void * ph = ( void * ) Cargo; " )
aadd( cpp_, " if( ph ) " )
@@ -656,7 +656,7 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc )
ENDIF
aadd( cpp_, " " )
aadd( cpp_, " p->ph = pObj;" )
aadd( cpp_, " p->func = release_" + cWidget +";" )
aadd( cpp_, " p->func = hbqt_gcRelease_" + cWidget +";" )
IF lObject
aadd( cpp_, " new( & p->pq ) QPointer< "+ cWidget +" >( ( " + cWidget + " * ) pObj );" )
ENDIF
@@ -727,7 +727,7 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc )
//IF lObject .or. IsMemObject( cWidget )
IF lDestructor
aadd( cpp_, " p->ph = pObj;" )
aadd( cpp_, " p->func = release_" + cWidget +";" )
aadd( cpp_, " p->func = hbqt_gcRelease_" + cWidget +";" )
aadd( cpp_, " " )
aadd( cpp_, " hb_retptrGC( p );" )
ELSE
@@ -1659,7 +1659,7 @@ STATIC FUNCTION Build_GarbageFile( cpp_, cPathOut )
aadd( txt_, " " )
FOR EACH s IN cpp_
aadd( txt_, "extern QT_G_FUNC( release_" + s + " );" )
aadd( txt_, "extern QT_G_FUNC( hbqt_gcRelease_" + s + " );" )
NEXT
aadd( txt_, "" )
@@ -2330,13 +2330,12 @@ FUNCTION Get_Command( cWgt, cCmn )
IF ascan( a_, cWgt ) == 0
aadd( a_, cWgt )
//hb_ToOutDebug( pad( cWgt,30 ) + "No " + zWidget )
ENDIF
IF (lNewGCtoQT)
cRet := 'hb_retptrGC( hbqt_gcAllocate_' + cWgt + '( new ' + cWgt + '( ' + cCmn + ' ) ) )'
ELSE
cRet := 'hb_retptrGC( hbqt_ptrTOgcpointer( new ' + cWgt + '( ' + cCmn + ' ), release_' + cWgt +' ) )'
cRet := 'hb_retptrGC( hbqt_ptrTOgcpointer( new ' + cWgt + '( ' + cCmn + ' ), hbqt_gcRelease_' + cWgt +' ) )'
ENDIF
RETURN cRet

View File

@@ -9,275 +9,275 @@
* --------------------------------------------------------------------
*/
extern QT_G_FUNC( release_QAbstractButton );
extern QT_G_FUNC( release_QAbstractItemDelegate );
extern QT_G_FUNC( release_QAbstractItemModel );
extern QT_G_FUNC( release_QAbstractItemView );
extern QT_G_FUNC( release_QAbstractListModel );
extern QT_G_FUNC( release_QAbstractProxyModel );
extern QT_G_FUNC( release_QAbstractPrintDialog );
extern QT_G_FUNC( release_QAbstractScrollArea );
extern QT_G_FUNC( release_QAbstractSlider );
extern QT_G_FUNC( release_QAbstractSpinBox );
extern QT_G_FUNC( release_QAbstractTableModel );
extern QT_G_FUNC( release_QAbstractTextDocumentLayout );
extern QT_G_FUNC( release_QAction );
extern QT_G_FUNC( release_QActionGroup );
extern QT_G_FUNC( release_QApplication );
extern QT_G_FUNC( release_QBitArray );
extern QT_G_FUNC( release_QBitmap );
extern QT_G_FUNC( release_QBoxLayout );
extern QT_G_FUNC( release_QBrush );
extern QT_G_FUNC( release_QButtonGroup );
extern QT_G_FUNC( release_QByteArray );
extern QT_G_FUNC( release_QCalendarWidget );
extern QT_G_FUNC( release_QCheckBox );
extern QT_G_FUNC( release_QClipboard );
extern QT_G_FUNC( release_QColor );
extern QT_G_FUNC( release_QColorDialog );
extern QT_G_FUNC( release_QComboBox );
extern QT_G_FUNC( release_QCommandLinkButton );
extern QT_G_FUNC( release_QCommonStyle );
extern QT_G_FUNC( release_QCompleter );
extern QT_G_FUNC( release_QConicalGradient );
extern QT_G_FUNC( release_QContextMenuEvent );
extern QT_G_FUNC( release_QCoreApplication );
extern QT_G_FUNC( release_QCursor );
extern QT_G_FUNC( release_QDataStream );
extern QT_G_FUNC( release_QDate );
extern QT_G_FUNC( release_QDateEdit );
extern QT_G_FUNC( release_QDateTime );
extern QT_G_FUNC( release_QDateTimeEdit );
extern QT_G_FUNC( release_QDesktopWidget );
extern QT_G_FUNC( release_QDial );
extern QT_G_FUNC( release_QDialog );
extern QT_G_FUNC( release_QDir );
extern QT_G_FUNC( release_QDirModel );
extern QT_G_FUNC( release_QDockWidget );
extern QT_G_FUNC( release_QDoubleSpinBox );
extern QT_G_FUNC( release_QDropEvent );
extern QT_G_FUNC( release_QDragMoveEvent );
extern QT_G_FUNC( release_QDragEnterEvent );
extern QT_G_FUNC( release_QDragLeaveEvent );
extern QT_G_FUNC( release_QErrorMessage );
extern QT_G_FUNC( release_QEvent );
extern QT_G_FUNC( release_QEventLoop );
extern QT_G_FUNC( release_QFile );
extern QT_G_FUNC( release_QFileDialog );
extern QT_G_FUNC( release_QFileInfo );
extern QT_G_FUNC( release_QFileIconProvider );
extern QT_G_FUNC( release_QFileSystemModel );
extern QT_G_FUNC( release_QFocusEvent );
extern QT_G_FUNC( release_QFocusFrame );
extern QT_G_FUNC( release_QFont );
extern QT_G_FUNC( release_QFontComboBox );
extern QT_G_FUNC( release_QFontDatabase );
extern QT_G_FUNC( release_QFontDialog );
extern QT_G_FUNC( release_QFontInfo );
extern QT_G_FUNC( release_QFontMetrics );
extern QT_G_FUNC( release_QFontMetricsF );
extern QT_G_FUNC( release_QFormLayout );
extern QT_G_FUNC( release_QFrame );
extern QT_G_FUNC( release_QFtp );
extern QT_G_FUNC( release_QGradient );
extern QT_G_FUNC( release_QGridLayout );
extern QT_G_FUNC( release_QGroupBox );
extern QT_G_FUNC( release_QHBoxLayout );
extern QT_G_FUNC( release_QHeaderView );
extern QT_G_FUNC( release_QHelpEvent );
extern QT_G_FUNC( release_QHttp );
extern QT_G_FUNC( release_QHttpHeader );
extern QT_G_FUNC( release_QHttpRequestHeader );
extern QT_G_FUNC( release_QHttpResponseHeader );
extern QT_G_FUNC( release_QIcon );
extern QT_G_FUNC( release_QInputContext );
extern QT_G_FUNC( release_QInputMethodEvent );
extern QT_G_FUNC( release_QImage );
extern QT_G_FUNC( release_QImageReader );
extern QT_G_FUNC( release_QImageWriter );
extern QT_G_FUNC( release_QInputDialog );
extern QT_G_FUNC( release_QInputEvent );
extern QT_G_FUNC( release_QIODevice );
extern QT_G_FUNC( release_QItemSelection );
extern QT_G_FUNC( release_QItemSelectionModel );
extern QT_G_FUNC( release_QKeyEvent );
extern QT_G_FUNC( release_QKeySequence );
extern QT_G_FUNC( release_QLabel );
extern QT_G_FUNC( release_QLatin1Char );
extern QT_G_FUNC( release_QLatin1String );
extern QT_G_FUNC( release_QLayout );
extern QT_G_FUNC( release_QLayoutItem );
extern QT_G_FUNC( release_QLCDNumber );
extern QT_G_FUNC( release_QLine );
extern QT_G_FUNC( release_QLineF );
extern QT_G_FUNC( release_QLinearGradient );
extern QT_G_FUNC( release_QLineEdit );
extern QT_G_FUNC( release_QList );
extern QT_G_FUNC( release_QListView );
extern QT_G_FUNC( release_QListWidget );
extern QT_G_FUNC( release_QListWidgetItem );
extern QT_G_FUNC( release_QLocale );
extern QT_G_FUNC( release_QMainWindow );
extern QT_G_FUNC( release_QMatrix );
extern QT_G_FUNC( release_QMenu );
extern QT_G_FUNC( release_QMenuBar );
extern QT_G_FUNC( release_QMessageBox );
extern QT_G_FUNC( release_QMimeData );
extern QT_G_FUNC( release_QModelIndex );
extern QT_G_FUNC( release_QMouseEvent );
extern QT_G_FUNC( release_QMoveEvent );
extern QT_G_FUNC( release_QMovie );
extern QT_G_FUNC( release_QNetworkRequest );
extern QT_G_FUNC( release_QObject );
extern QT_G_FUNC( release_QPaintDevice );
extern QT_G_FUNC( release_QPainterPath );
extern QT_G_FUNC( release_QPageSetupDialog );
extern QT_G_FUNC( release_QPainter );
extern QT_G_FUNC( release_QPaintEvent );
extern QT_G_FUNC( release_QPalette );
extern QT_G_FUNC( release_QPen );
extern QT_G_FUNC( release_QPicture );
extern QT_G_FUNC( release_QPixmap );
extern QT_G_FUNC( release_QPlainTextEdit );
extern QT_G_FUNC( release_QPoint );
extern QT_G_FUNC( release_QPointF );
extern QT_G_FUNC( release_QPolygon );
extern QT_G_FUNC( release_QPolygonF );
extern QT_G_FUNC( release_QPrintDialog );
extern QT_G_FUNC( release_QPrintEngine );
extern QT_G_FUNC( release_QPrinter );
extern QT_G_FUNC( release_QPrintPreviewDialog );
extern QT_G_FUNC( release_QProcess );
extern QT_G_FUNC( release_QProgressBar );
extern QT_G_FUNC( release_QProgressDialog );
extern QT_G_FUNC( release_QPushButton );
extern QT_G_FUNC( release_QRadialGradient );
extern QT_G_FUNC( release_QRadioButton );
extern QT_G_FUNC( release_QRect );
extern QT_G_FUNC( release_QRectF );
extern QT_G_FUNC( release_QRegion );
extern QT_G_FUNC( release_QRegExp );
extern QT_G_FUNC( release_QResizeEvent );
extern QT_G_FUNC( release_QResource );
extern QT_G_FUNC( release_QScrollArea );
extern QT_G_FUNC( release_QScrollBar );
extern QT_G_FUNC( release_QSessionManager );
extern QT_G_FUNC( release_QSignalMapper );
extern QT_G_FUNC( release_QSize );
extern QT_G_FUNC( release_QSizeF );
extern QT_G_FUNC( release_QSizeGrip );
extern QT_G_FUNC( release_QSizePolicy );
extern QT_G_FUNC( release_QSlider );
extern QT_G_FUNC( release_QSound );
extern QT_G_FUNC( release_QSpacerItem );
extern QT_G_FUNC( release_QSpinBox );
extern QT_G_FUNC( release_QSplashScreen );
extern QT_G_FUNC( release_QSplitter );
extern QT_G_FUNC( release_QStandardItem );
extern QT_G_FUNC( release_QStandardItemModel );
extern QT_G_FUNC( release_QStatusBar );
extern QT_G_FUNC( release_QStringList );
extern QT_G_FUNC( release_QStringListModel );
extern QT_G_FUNC( release_QStyle );
extern QT_G_FUNC( release_QStyledItemDelegate );
extern QT_G_FUNC( release_QStyleFactory );
extern QT_G_FUNC( release_QStyleHintReturn );
extern QT_G_FUNC( release_QStyleHintReturnMask );
extern QT_G_FUNC( release_QStyleHintReturnVariant );
extern QT_G_FUNC( release_QStyleOption );
extern QT_G_FUNC( release_QStyleOptionButton );
extern QT_G_FUNC( release_QStyleOptionComboBox );
extern QT_G_FUNC( release_QStyleOptionComplex );
extern QT_G_FUNC( release_QStyleOptionDockWidget );
extern QT_G_FUNC( release_QStyleOptionFocusRect );
extern QT_G_FUNC( release_QStyleOptionFrame );
extern QT_G_FUNC( release_QStyleOptionGroupBox );
extern QT_G_FUNC( release_QStyleOptionHeader );
extern QT_G_FUNC( release_QStyleOptionMenuItem );
extern QT_G_FUNC( release_QStyleOptionProgressBar );
extern QT_G_FUNC( release_QStyleOptionSizeGrip );
extern QT_G_FUNC( release_QStyleOptionSlider );
extern QT_G_FUNC( release_QStyleOptionSpinBox );
extern QT_G_FUNC( release_QStyleOptionTab );
extern QT_G_FUNC( release_QStyleOptionTabBarBase );
extern QT_G_FUNC( release_QStyleOptionTabWidgetFrame );
extern QT_G_FUNC( release_QStyleOptionTitleBar );
extern QT_G_FUNC( release_QStyleOptionToolBar );
extern QT_G_FUNC( release_QStyleOptionToolBox );
extern QT_G_FUNC( release_QStyleOptionToolButton );
extern QT_G_FUNC( release_QStyleOptionViewItem );
extern QT_G_FUNC( release_QStylePainter );
extern QT_G_FUNC( release_QSyntaxHighlighter );
extern QT_G_FUNC( release_QSystemTrayIcon );
extern QT_G_FUNC( release_QTabBar );
extern QT_G_FUNC( release_QTableView );
extern QT_G_FUNC( release_QTableWidget );
extern QT_G_FUNC( release_QTableWidgetItem );
extern QT_G_FUNC( release_QTabWidget );
extern QT_G_FUNC( release_QTableWidgetSelectionRange );
extern QT_G_FUNC( release_QTextBlock );
extern QT_G_FUNC( release_QTextBlockFormat );
extern QT_G_FUNC( release_QTextBlockGroup );
extern QT_G_FUNC( release_QTextBrowser );
extern QT_G_FUNC( release_QTextBoundaryFinder );
extern QT_G_FUNC( release_QTextCharFormat );
extern QT_G_FUNC( release_QTextCodec );
extern QT_G_FUNC( release_QTextCursor );
extern QT_G_FUNC( release_QTextDecoder );
extern QT_G_FUNC( release_QTextDocument );
extern QT_G_FUNC( release_QTextDocumentFragment );
extern QT_G_FUNC( release_QTextDocumentWriter );
extern QT_G_FUNC( release_QTextEdit );
extern QT_G_FUNC( release_QTextEncoder );
extern QT_G_FUNC( release_QTextFormat );
extern QT_G_FUNC( release_QTextFragment );
extern QT_G_FUNC( release_QTextFrame );
extern QT_G_FUNC( release_QTextFrameFormat );
extern QT_G_FUNC( release_QTextImageFormat );
extern QT_G_FUNC( release_QTextInlineObject );
extern QT_G_FUNC( release_QTextItem );
extern QT_G_FUNC( release_QTextLayout );
extern QT_G_FUNC( release_QTextLength );
extern QT_G_FUNC( release_QTextLine );
extern QT_G_FUNC( release_QTextListFormat );
extern QT_G_FUNC( release_QTextObject );
extern QT_G_FUNC( release_QTextOption );
extern QT_G_FUNC( release_QTextStream );
extern QT_G_FUNC( release_QTextTableFormat );
extern QT_G_FUNC( release_QThread );
extern QT_G_FUNC( release_QTime );
extern QT_G_FUNC( release_QTimeEdit );
extern QT_G_FUNC( release_QTimer );
extern QT_G_FUNC( release_QToolBar );
extern QT_G_FUNC( release_QToolBox );
extern QT_G_FUNC( release_QToolButton );
extern QT_G_FUNC( release_QTransform );
extern QT_G_FUNC( release_QTranslator );
extern QT_G_FUNC( release_QTreeView );
extern QT_G_FUNC( release_QTreeWidget );
extern QT_G_FUNC( release_QTreeWidgetItem );
extern QT_G_FUNC( release_QUiLoader );
extern QT_G_FUNC( release_QUrl );
extern QT_G_FUNC( release_QValidator );
extern QT_G_FUNC( release_QVariant );
extern QT_G_FUNC( release_QVBoxLayout );
extern QT_G_FUNC( release_QWebFrame );
extern QT_G_FUNC( release_QWebHistory );
extern QT_G_FUNC( release_QWebHistoryInterface );
extern QT_G_FUNC( release_QWebHistoryItem );
extern QT_G_FUNC( release_QWebHitTestResult );
extern QT_G_FUNC( release_QWebPage );
extern QT_G_FUNC( release_QWebPluginFactory );
extern QT_G_FUNC( release_QWebSecurityOrigin );
extern QT_G_FUNC( release_QWebSettings );
extern QT_G_FUNC( release_QWebView );
extern QT_G_FUNC( release_QWheelEvent );
extern QT_G_FUNC( release_QWidget );
extern QT_G_FUNC( release_QWidgetAction );
extern QT_G_FUNC( release_QWidgetItem );
extern QT_G_FUNC( release_QWindowsStyle );
extern QT_G_FUNC( release_QWizard );
extern QT_G_FUNC( release_QWizardPage );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractButton );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractItemDelegate );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractItemView );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractListModel );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractPrintDialog );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractScrollArea );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractSlider );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractSpinBox );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel );
extern QT_G_FUNC( hbqt_gcRelease_QAbstractTextDocumentLayout );
extern QT_G_FUNC( hbqt_gcRelease_QAction );
extern QT_G_FUNC( hbqt_gcRelease_QActionGroup );
extern QT_G_FUNC( hbqt_gcRelease_QApplication );
extern QT_G_FUNC( hbqt_gcRelease_QBitArray );
extern QT_G_FUNC( hbqt_gcRelease_QBitmap );
extern QT_G_FUNC( hbqt_gcRelease_QBoxLayout );
extern QT_G_FUNC( hbqt_gcRelease_QBrush );
extern QT_G_FUNC( hbqt_gcRelease_QButtonGroup );
extern QT_G_FUNC( hbqt_gcRelease_QByteArray );
extern QT_G_FUNC( hbqt_gcRelease_QCalendarWidget );
extern QT_G_FUNC( hbqt_gcRelease_QCheckBox );
extern QT_G_FUNC( hbqt_gcRelease_QClipboard );
extern QT_G_FUNC( hbqt_gcRelease_QColor );
extern QT_G_FUNC( hbqt_gcRelease_QColorDialog );
extern QT_G_FUNC( hbqt_gcRelease_QComboBox );
extern QT_G_FUNC( hbqt_gcRelease_QCommandLinkButton );
extern QT_G_FUNC( hbqt_gcRelease_QCommonStyle );
extern QT_G_FUNC( hbqt_gcRelease_QCompleter );
extern QT_G_FUNC( hbqt_gcRelease_QConicalGradient );
extern QT_G_FUNC( hbqt_gcRelease_QContextMenuEvent );
extern QT_G_FUNC( hbqt_gcRelease_QCoreApplication );
extern QT_G_FUNC( hbqt_gcRelease_QCursor );
extern QT_G_FUNC( hbqt_gcRelease_QDataStream );
extern QT_G_FUNC( hbqt_gcRelease_QDate );
extern QT_G_FUNC( hbqt_gcRelease_QDateEdit );
extern QT_G_FUNC( hbqt_gcRelease_QDateTime );
extern QT_G_FUNC( hbqt_gcRelease_QDateTimeEdit );
extern QT_G_FUNC( hbqt_gcRelease_QDesktopWidget );
extern QT_G_FUNC( hbqt_gcRelease_QDial );
extern QT_G_FUNC( hbqt_gcRelease_QDialog );
extern QT_G_FUNC( hbqt_gcRelease_QDir );
extern QT_G_FUNC( hbqt_gcRelease_QDirModel );
extern QT_G_FUNC( hbqt_gcRelease_QDockWidget );
extern QT_G_FUNC( hbqt_gcRelease_QDoubleSpinBox );
extern QT_G_FUNC( hbqt_gcRelease_QDropEvent );
extern QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent );
extern QT_G_FUNC( hbqt_gcRelease_QDragEnterEvent );
extern QT_G_FUNC( hbqt_gcRelease_QDragLeaveEvent );
extern QT_G_FUNC( hbqt_gcRelease_QErrorMessage );
extern QT_G_FUNC( hbqt_gcRelease_QEvent );
extern QT_G_FUNC( hbqt_gcRelease_QEventLoop );
extern QT_G_FUNC( hbqt_gcRelease_QFile );
extern QT_G_FUNC( hbqt_gcRelease_QFileDialog );
extern QT_G_FUNC( hbqt_gcRelease_QFileInfo );
extern QT_G_FUNC( hbqt_gcRelease_QFileIconProvider );
extern QT_G_FUNC( hbqt_gcRelease_QFileSystemModel );
extern QT_G_FUNC( hbqt_gcRelease_QFocusEvent );
extern QT_G_FUNC( hbqt_gcRelease_QFocusFrame );
extern QT_G_FUNC( hbqt_gcRelease_QFont );
extern QT_G_FUNC( hbqt_gcRelease_QFontComboBox );
extern QT_G_FUNC( hbqt_gcRelease_QFontDatabase );
extern QT_G_FUNC( hbqt_gcRelease_QFontDialog );
extern QT_G_FUNC( hbqt_gcRelease_QFontInfo );
extern QT_G_FUNC( hbqt_gcRelease_QFontMetrics );
extern QT_G_FUNC( hbqt_gcRelease_QFontMetricsF );
extern QT_G_FUNC( hbqt_gcRelease_QFormLayout );
extern QT_G_FUNC( hbqt_gcRelease_QFrame );
extern QT_G_FUNC( hbqt_gcRelease_QFtp );
extern QT_G_FUNC( hbqt_gcRelease_QGradient );
extern QT_G_FUNC( hbqt_gcRelease_QGridLayout );
extern QT_G_FUNC( hbqt_gcRelease_QGroupBox );
extern QT_G_FUNC( hbqt_gcRelease_QHBoxLayout );
extern QT_G_FUNC( hbqt_gcRelease_QHeaderView );
extern QT_G_FUNC( hbqt_gcRelease_QHelpEvent );
extern QT_G_FUNC( hbqt_gcRelease_QHttp );
extern QT_G_FUNC( hbqt_gcRelease_QHttpHeader );
extern QT_G_FUNC( hbqt_gcRelease_QHttpRequestHeader );
extern QT_G_FUNC( hbqt_gcRelease_QHttpResponseHeader );
extern QT_G_FUNC( hbqt_gcRelease_QIcon );
extern QT_G_FUNC( hbqt_gcRelease_QInputContext );
extern QT_G_FUNC( hbqt_gcRelease_QInputMethodEvent );
extern QT_G_FUNC( hbqt_gcRelease_QImage );
extern QT_G_FUNC( hbqt_gcRelease_QImageReader );
extern QT_G_FUNC( hbqt_gcRelease_QImageWriter );
extern QT_G_FUNC( hbqt_gcRelease_QInputDialog );
extern QT_G_FUNC( hbqt_gcRelease_QInputEvent );
extern QT_G_FUNC( hbqt_gcRelease_QIODevice );
extern QT_G_FUNC( hbqt_gcRelease_QItemSelection );
extern QT_G_FUNC( hbqt_gcRelease_QItemSelectionModel );
extern QT_G_FUNC( hbqt_gcRelease_QKeyEvent );
extern QT_G_FUNC( hbqt_gcRelease_QKeySequence );
extern QT_G_FUNC( hbqt_gcRelease_QLabel );
extern QT_G_FUNC( hbqt_gcRelease_QLatin1Char );
extern QT_G_FUNC( hbqt_gcRelease_QLatin1String );
extern QT_G_FUNC( hbqt_gcRelease_QLayout );
extern QT_G_FUNC( hbqt_gcRelease_QLayoutItem );
extern QT_G_FUNC( hbqt_gcRelease_QLCDNumber );
extern QT_G_FUNC( hbqt_gcRelease_QLine );
extern QT_G_FUNC( hbqt_gcRelease_QLineF );
extern QT_G_FUNC( hbqt_gcRelease_QLinearGradient );
extern QT_G_FUNC( hbqt_gcRelease_QLineEdit );
extern QT_G_FUNC( hbqt_gcRelease_QList );
extern QT_G_FUNC( hbqt_gcRelease_QListView );
extern QT_G_FUNC( hbqt_gcRelease_QListWidget );
extern QT_G_FUNC( hbqt_gcRelease_QListWidgetItem );
extern QT_G_FUNC( hbqt_gcRelease_QLocale );
extern QT_G_FUNC( hbqt_gcRelease_QMainWindow );
extern QT_G_FUNC( hbqt_gcRelease_QMatrix );
extern QT_G_FUNC( hbqt_gcRelease_QMenu );
extern QT_G_FUNC( hbqt_gcRelease_QMenuBar );
extern QT_G_FUNC( hbqt_gcRelease_QMessageBox );
extern QT_G_FUNC( hbqt_gcRelease_QMimeData );
extern QT_G_FUNC( hbqt_gcRelease_QModelIndex );
extern QT_G_FUNC( hbqt_gcRelease_QMouseEvent );
extern QT_G_FUNC( hbqt_gcRelease_QMoveEvent );
extern QT_G_FUNC( hbqt_gcRelease_QMovie );
extern QT_G_FUNC( hbqt_gcRelease_QNetworkRequest );
extern QT_G_FUNC( hbqt_gcRelease_QObject );
extern QT_G_FUNC( hbqt_gcRelease_QPaintDevice );
extern QT_G_FUNC( hbqt_gcRelease_QPainterPath );
extern QT_G_FUNC( hbqt_gcRelease_QPageSetupDialog );
extern QT_G_FUNC( hbqt_gcRelease_QPainter );
extern QT_G_FUNC( hbqt_gcRelease_QPaintEvent );
extern QT_G_FUNC( hbqt_gcRelease_QPalette );
extern QT_G_FUNC( hbqt_gcRelease_QPen );
extern QT_G_FUNC( hbqt_gcRelease_QPicture );
extern QT_G_FUNC( hbqt_gcRelease_QPixmap );
extern QT_G_FUNC( hbqt_gcRelease_QPlainTextEdit );
extern QT_G_FUNC( hbqt_gcRelease_QPoint );
extern QT_G_FUNC( hbqt_gcRelease_QPointF );
extern QT_G_FUNC( hbqt_gcRelease_QPolygon );
extern QT_G_FUNC( hbqt_gcRelease_QPolygonF );
extern QT_G_FUNC( hbqt_gcRelease_QPrintDialog );
extern QT_G_FUNC( hbqt_gcRelease_QPrintEngine );
extern QT_G_FUNC( hbqt_gcRelease_QPrinter );
extern QT_G_FUNC( hbqt_gcRelease_QPrintPreviewDialog );
extern QT_G_FUNC( hbqt_gcRelease_QProcess );
extern QT_G_FUNC( hbqt_gcRelease_QProgressBar );
extern QT_G_FUNC( hbqt_gcRelease_QProgressDialog );
extern QT_G_FUNC( hbqt_gcRelease_QPushButton );
extern QT_G_FUNC( hbqt_gcRelease_QRadialGradient );
extern QT_G_FUNC( hbqt_gcRelease_QRadioButton );
extern QT_G_FUNC( hbqt_gcRelease_QRect );
extern QT_G_FUNC( hbqt_gcRelease_QRectF );
extern QT_G_FUNC( hbqt_gcRelease_QRegion );
extern QT_G_FUNC( hbqt_gcRelease_QRegExp );
extern QT_G_FUNC( hbqt_gcRelease_QResizeEvent );
extern QT_G_FUNC( hbqt_gcRelease_QResource );
extern QT_G_FUNC( hbqt_gcRelease_QScrollArea );
extern QT_G_FUNC( hbqt_gcRelease_QScrollBar );
extern QT_G_FUNC( hbqt_gcRelease_QSessionManager );
extern QT_G_FUNC( hbqt_gcRelease_QSignalMapper );
extern QT_G_FUNC( hbqt_gcRelease_QSize );
extern QT_G_FUNC( hbqt_gcRelease_QSizeF );
extern QT_G_FUNC( hbqt_gcRelease_QSizeGrip );
extern QT_G_FUNC( hbqt_gcRelease_QSizePolicy );
extern QT_G_FUNC( hbqt_gcRelease_QSlider );
extern QT_G_FUNC( hbqt_gcRelease_QSound );
extern QT_G_FUNC( hbqt_gcRelease_QSpacerItem );
extern QT_G_FUNC( hbqt_gcRelease_QSpinBox );
extern QT_G_FUNC( hbqt_gcRelease_QSplashScreen );
extern QT_G_FUNC( hbqt_gcRelease_QSplitter );
extern QT_G_FUNC( hbqt_gcRelease_QStandardItem );
extern QT_G_FUNC( hbqt_gcRelease_QStandardItemModel );
extern QT_G_FUNC( hbqt_gcRelease_QStatusBar );
extern QT_G_FUNC( hbqt_gcRelease_QStringList );
extern QT_G_FUNC( hbqt_gcRelease_QStringListModel );
extern QT_G_FUNC( hbqt_gcRelease_QStyle );
extern QT_G_FUNC( hbqt_gcRelease_QStyledItemDelegate );
extern QT_G_FUNC( hbqt_gcRelease_QStyleFactory );
extern QT_G_FUNC( hbqt_gcRelease_QStyleHintReturn );
extern QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnMask );
extern QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnVariant );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOption );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionButton );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionComboBox );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionComplex );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionDockWidget );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionFocusRect );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionFrame );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionGroupBox );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionHeader );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionMenuItem );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionProgressBar );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionSizeGrip );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionSlider );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionSpinBox );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTab );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabBarBase );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabWidgetFrame );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTitleBar );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBar );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBox );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolButton );
extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionViewItem );
extern QT_G_FUNC( hbqt_gcRelease_QStylePainter );
extern QT_G_FUNC( hbqt_gcRelease_QSyntaxHighlighter );
extern QT_G_FUNC( hbqt_gcRelease_QSystemTrayIcon );
extern QT_G_FUNC( hbqt_gcRelease_QTabBar );
extern QT_G_FUNC( hbqt_gcRelease_QTableView );
extern QT_G_FUNC( hbqt_gcRelease_QTableWidget );
extern QT_G_FUNC( hbqt_gcRelease_QTableWidgetItem );
extern QT_G_FUNC( hbqt_gcRelease_QTabWidget );
extern QT_G_FUNC( hbqt_gcRelease_QTableWidgetSelectionRange );
extern QT_G_FUNC( hbqt_gcRelease_QTextBlock );
extern QT_G_FUNC( hbqt_gcRelease_QTextBlockFormat );
extern QT_G_FUNC( hbqt_gcRelease_QTextBlockGroup );
extern QT_G_FUNC( hbqt_gcRelease_QTextBrowser );
extern QT_G_FUNC( hbqt_gcRelease_QTextBoundaryFinder );
extern QT_G_FUNC( hbqt_gcRelease_QTextCharFormat );
extern QT_G_FUNC( hbqt_gcRelease_QTextCodec );
extern QT_G_FUNC( hbqt_gcRelease_QTextCursor );
extern QT_G_FUNC( hbqt_gcRelease_QTextDecoder );
extern QT_G_FUNC( hbqt_gcRelease_QTextDocument );
extern QT_G_FUNC( hbqt_gcRelease_QTextDocumentFragment );
extern QT_G_FUNC( hbqt_gcRelease_QTextDocumentWriter );
extern QT_G_FUNC( hbqt_gcRelease_QTextEdit );
extern QT_G_FUNC( hbqt_gcRelease_QTextEncoder );
extern QT_G_FUNC( hbqt_gcRelease_QTextFormat );
extern QT_G_FUNC( hbqt_gcRelease_QTextFragment );
extern QT_G_FUNC( hbqt_gcRelease_QTextFrame );
extern QT_G_FUNC( hbqt_gcRelease_QTextFrameFormat );
extern QT_G_FUNC( hbqt_gcRelease_QTextImageFormat );
extern QT_G_FUNC( hbqt_gcRelease_QTextInlineObject );
extern QT_G_FUNC( hbqt_gcRelease_QTextItem );
extern QT_G_FUNC( hbqt_gcRelease_QTextLayout );
extern QT_G_FUNC( hbqt_gcRelease_QTextLength );
extern QT_G_FUNC( hbqt_gcRelease_QTextLine );
extern QT_G_FUNC( hbqt_gcRelease_QTextListFormat );
extern QT_G_FUNC( hbqt_gcRelease_QTextObject );
extern QT_G_FUNC( hbqt_gcRelease_QTextOption );
extern QT_G_FUNC( hbqt_gcRelease_QTextStream );
extern QT_G_FUNC( hbqt_gcRelease_QTextTableFormat );
extern QT_G_FUNC( hbqt_gcRelease_QThread );
extern QT_G_FUNC( hbqt_gcRelease_QTime );
extern QT_G_FUNC( hbqt_gcRelease_QTimeEdit );
extern QT_G_FUNC( hbqt_gcRelease_QTimer );
extern QT_G_FUNC( hbqt_gcRelease_QToolBar );
extern QT_G_FUNC( hbqt_gcRelease_QToolBox );
extern QT_G_FUNC( hbqt_gcRelease_QToolButton );
extern QT_G_FUNC( hbqt_gcRelease_QTransform );
extern QT_G_FUNC( hbqt_gcRelease_QTranslator );
extern QT_G_FUNC( hbqt_gcRelease_QTreeView );
extern QT_G_FUNC( hbqt_gcRelease_QTreeWidget );
extern QT_G_FUNC( hbqt_gcRelease_QTreeWidgetItem );
extern QT_G_FUNC( hbqt_gcRelease_QUiLoader );
extern QT_G_FUNC( hbqt_gcRelease_QUrl );
extern QT_G_FUNC( hbqt_gcRelease_QValidator );
extern QT_G_FUNC( hbqt_gcRelease_QVariant );
extern QT_G_FUNC( hbqt_gcRelease_QVBoxLayout );
extern QT_G_FUNC( hbqt_gcRelease_QWebFrame );
extern QT_G_FUNC( hbqt_gcRelease_QWebHistory );
extern QT_G_FUNC( hbqt_gcRelease_QWebHistoryInterface );
extern QT_G_FUNC( hbqt_gcRelease_QWebHistoryItem );
extern QT_G_FUNC( hbqt_gcRelease_QWebHitTestResult );
extern QT_G_FUNC( hbqt_gcRelease_QWebPage );
extern QT_G_FUNC( hbqt_gcRelease_QWebPluginFactory );
extern QT_G_FUNC( hbqt_gcRelease_QWebSecurityOrigin );
extern QT_G_FUNC( hbqt_gcRelease_QWebSettings );
extern QT_G_FUNC( hbqt_gcRelease_QWebView );
extern QT_G_FUNC( hbqt_gcRelease_QWheelEvent );
extern QT_G_FUNC( hbqt_gcRelease_QWidget );
extern QT_G_FUNC( hbqt_gcRelease_QWidgetAction );
extern QT_G_FUNC( hbqt_gcRelease_QWidgetItem );
extern QT_G_FUNC( hbqt_gcRelease_QWindowsStyle );
extern QT_G_FUNC( hbqt_gcRelease_QWizard );
extern QT_G_FUNC( hbqt_gcRelease_QWizardPage );
extern void * hbqt_gcAllocate_QAbstractButton( void * pObj );
extern void * hbqt_gcAllocate_QAbstractItemDelegate( void * pObj );

View File

@@ -96,7 +96,7 @@
QT_G_FUNC( release_QAbstractItemModel )
QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -76,7 +76,7 @@
* ~QAbstractListModel ()
*/
QT_G_FUNC( release_QAbstractListModel )
QT_G_FUNC( hbqt_gcRelease_QAbstractListModel )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -76,7 +76,7 @@
* ~QAbstractTableModel ()
*/
QT_G_FUNC( release_QAbstractTableModel )
QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -76,22 +76,22 @@
* QBitArray ( const QBitArray & other )
*/
QT_G_FUNC( release_QBitArray )
QT_G_FUNC( hbqt_gcRelease_QBitArray )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QBitArray p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QBitArray ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBitArray p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBitArray ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QBitArray * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QBitArray Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QBitArray Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QBitArray Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QBitArray Object Already deleted!" ) );
}
}
@@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QBitArray( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QBitArray;
p->func = hbqt_gcRelease_QBitArray;
HB_TRACE( HB_TR_DEBUG, ( " new_QBitArray %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -94,22 +94,22 @@
* ~QByteArray ()
*/
QT_G_FUNC( release_QByteArray )
QT_G_FUNC( hbqt_gcRelease_QByteArray )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QByteArray p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QByteArray ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QByteArray p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QByteArray ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QByteArray * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QByteArray Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QByteArray Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QByteArray Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QByteArray Object Already deleted!" ) );
}
}
@@ -118,7 +118,7 @@ void * hbqt_gcAllocate_QByteArray( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QByteArray;
p->func = hbqt_gcRelease_QByteArray;
HB_TRACE( HB_TR_DEBUG, ( " new_QByteArray %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -81,7 +81,7 @@
* ~QCoreApplication ()
*/
QT_G_FUNC( release_QCoreApplication )
QT_G_FUNC( hbqt_gcRelease_QCoreApplication )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -84,22 +84,22 @@
* virtual ~QDataStream ()
*/
QT_G_FUNC( release_QDataStream )
QT_G_FUNC( hbqt_gcRelease_QDataStream )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDataStream p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QDataStream ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDataStream p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDataStream ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QDataStream * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QDataStream Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QDataStream Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDataStream Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDataStream Object Already deleted!" ) );
}
}
@@ -108,7 +108,7 @@ void * hbqt_gcAllocate_QDataStream( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDataStream;
p->func = hbqt_gcRelease_QDataStream;
HB_TRACE( HB_TR_DEBUG, ( " new_QDataStream %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -79,22 +79,22 @@
* QDate ( int y, int m, int d )
*/
QT_G_FUNC( release_QDate )
QT_G_FUNC( hbqt_gcRelease_QDate )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDate p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QDate ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDate p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDate ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QDate * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QDate Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QDate Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDate Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDate Object Already deleted!" ) );
}
}
@@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QDate( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDate;
p->func = hbqt_gcRelease_QDate;
HB_TRACE( HB_TR_DEBUG, ( " new_QDate %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -79,22 +79,22 @@
* ~QDateTime ()
*/
QT_G_FUNC( release_QDateTime )
QT_G_FUNC( hbqt_gcRelease_QDateTime )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDateTime p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QDateTime ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateTime p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateTime ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QDateTime * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QDateTime Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QDateTime Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDateTime Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDateTime Object Already deleted!" ) );
}
}
@@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QDateTime( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDateTime;
p->func = hbqt_gcRelease_QDateTime;
HB_TRACE( HB_TR_DEBUG, ( " new_QDateTime %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -85,22 +85,22 @@
* ~QDir ()
*/
QT_G_FUNC( release_QDir )
QT_G_FUNC( hbqt_gcRelease_QDir )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDir p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QDir ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDir p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDir ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QDir * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QDir Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QDir Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDir Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDir Object Already deleted!" ) );
}
}
@@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QDir( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDir;
p->func = hbqt_gcRelease_QDir;
HB_TRACE( HB_TR_DEBUG, ( " new_QDir %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -80,22 +80,22 @@
* virtual ~QEvent ()
*/
QT_G_FUNC( release_QEvent )
QT_G_FUNC( hbqt_gcRelease_QEvent )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QEvent p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QEvent ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QEvent p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QEvent ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QEvent * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QEvent Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QEvent Object Already deleted!" ) );
}
}
@@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QEvent( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QEvent;
p->func = hbqt_gcRelease_QEvent;
HB_TRACE( HB_TR_DEBUG, ( " new_QEvent %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -88,12 +88,12 @@ typedef struct
QPointer< QEventLoop > pq;
} QGC_POINTER_QEventLoop;
QT_G_FUNC( release_QEventLoop )
QT_G_FUNC( hbqt_gcRelease_QEventLoop )
{
QGC_POINTER_QEventLoop * p = ( QGC_POINTER_QEventLoop * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QEventLoop p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QEventLoop ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QEventLoop p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QEventLoop ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -113,16 +113,16 @@ QT_G_FUNC( release_QEventLoop )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QEventLoop Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QEventLoop Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QEventLoop Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QEventLoop Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QEventLoop Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QEventLoop Object Already deleted!" ) );
}
}
@@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QEventLoop( void * pObj )
QGC_POINTER_QEventLoop * p = ( QGC_POINTER_QEventLoop * ) hb_gcAllocate( sizeof( QGC_POINTER_QEventLoop ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QEventLoop;
p->func = hbqt_gcRelease_QEventLoop;
new( & p->pq ) QPointer< QEventLoop >( ( QEventLoop * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QEventLoop %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -93,12 +93,12 @@ typedef struct
QPointer< QFile > pq;
} QGC_POINTER_QFile;
QT_G_FUNC( release_QFile )
QT_G_FUNC( hbqt_gcRelease_QFile )
{
QGC_POINTER_QFile * p = ( QGC_POINTER_QFile * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFile p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QFile ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFile p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFile ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -118,16 +118,16 @@ QT_G_FUNC( release_QFile )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QFile Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFile Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QFile Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFile Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFile Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFile Object Already deleted!" ) );
}
}
@@ -136,7 +136,7 @@ void * hbqt_gcAllocate_QFile( void * pObj )
QGC_POINTER_QFile * p = ( QGC_POINTER_QFile * ) hb_gcAllocate( sizeof( QGC_POINTER_QFile ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFile;
p->func = hbqt_gcRelease_QFile;
new( & p->pq ) QPointer< QFile >( ( QFile * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QFile %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -85,22 +85,22 @@
* ~QFileInfo ()
*/
QT_G_FUNC( release_QFileInfo )
QT_G_FUNC( hbqt_gcRelease_QFileInfo )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFileInfo p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QFileInfo ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileInfo p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileInfo ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QFileInfo * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QFileInfo Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFileInfo Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFileInfo Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFileInfo Object Already deleted!" ) );
}
}
@@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QFileInfo( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFileInfo;
p->func = hbqt_gcRelease_QFileInfo;
HB_TRACE( HB_TR_DEBUG, ( " new_QFileInfo %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -82,7 +82,7 @@
* virtual ~QIODevice ()
*/
QT_G_FUNC( release_QIODevice )
QT_G_FUNC( hbqt_gcRelease_QIODevice )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -75,22 +75,22 @@
* QLatin1Char ( char c )
*/
QT_G_FUNC( release_QLatin1Char )
QT_G_FUNC( hbqt_gcRelease_QLatin1Char )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QLatin1Char p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QLatin1Char ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLatin1Char p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLatin1Char ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QLatin1Char * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QLatin1Char Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QLatin1Char Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLatin1Char Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLatin1Char Object Already deleted!" ) );
}
}
@@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QLatin1Char( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QLatin1Char;
p->func = hbqt_gcRelease_QLatin1Char;
HB_TRACE( HB_TR_DEBUG, ( " new_QLatin1Char %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -75,22 +75,22 @@
* QLatin1String ( const char * str )
*/
QT_G_FUNC( release_QLatin1String )
QT_G_FUNC( hbqt_gcRelease_QLatin1String )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QLatin1String p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QLatin1String ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLatin1String p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLatin1String ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QLatin1String * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QLatin1String Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QLatin1String Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLatin1String Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLatin1String Object Already deleted!" ) );
}
}
@@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QLatin1String( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QLatin1String;
p->func = hbqt_gcRelease_QLatin1String;
HB_TRACE( HB_TR_DEBUG, ( " new_QLatin1String %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -77,22 +77,22 @@
* QLine ( int x1, int y1, int x2, int y2 )
*/
QT_G_FUNC( release_QLine )
QT_G_FUNC( hbqt_gcRelease_QLine )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QLine p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QLine ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLine p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLine ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QLine * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QLine Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QLine Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLine Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLine Object Already deleted!" ) );
}
}
@@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QLine( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QLine;
p->func = hbqt_gcRelease_QLine;
HB_TRACE( HB_TR_DEBUG, ( " new_QLine %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -81,22 +81,22 @@
* QLineF ( const QLine & line )
*/
QT_G_FUNC( release_QLineF )
QT_G_FUNC( hbqt_gcRelease_QLineF )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QLineF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QLineF ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLineF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLineF ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QLineF * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QLineF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QLineF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLineF Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLineF Object Already deleted!" ) );
}
}
@@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QLineF( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QLineF;
p->func = hbqt_gcRelease_QLineF;
HB_TRACE( HB_TR_DEBUG, ( " new_QLineF %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -103,22 +103,22 @@
* ~QList ()
*/
QT_G_FUNC( release_QList )
QT_G_FUNC( hbqt_gcRelease_QList )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QList p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QList ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QList p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QList ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QList< void * > * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QList Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QList Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QList Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QList Object Already deleted!" ) );
}
}
@@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QList( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QList;
p->func = hbqt_gcRelease_QList;
HB_TRACE( HB_TR_DEBUG, ( " new_QList %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -105,22 +105,22 @@
* QLocale ( const QLocale & other )
*/
QT_G_FUNC( release_QLocale )
QT_G_FUNC( hbqt_gcRelease_QLocale )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QLocale p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QLocale ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLocale p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLocale ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QLocale * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QLocale Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QLocale Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLocale Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLocale Object Already deleted!" ) );
}
}
@@ -129,7 +129,7 @@ void * hbqt_gcAllocate_QLocale( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QLocale;
p->func = hbqt_gcRelease_QLocale;
HB_TRACE( HB_TR_DEBUG, ( " new_QLocale %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -93,12 +93,12 @@ typedef struct
QPointer< QMimeData > pq;
} QGC_POINTER_QMimeData;
QT_G_FUNC( release_QMimeData )
QT_G_FUNC( hbqt_gcRelease_QMimeData )
{
QGC_POINTER_QMimeData * p = ( QGC_POINTER_QMimeData * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QMimeData p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QMimeData ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMimeData p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMimeData ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -118,16 +118,16 @@ QT_G_FUNC( release_QMimeData )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QMimeData Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMimeData Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QMimeData Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QMimeData Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMimeData Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMimeData Object Already deleted!" ) );
}
}
@@ -136,7 +136,7 @@ void * hbqt_gcAllocate_QMimeData( void * pObj )
QGC_POINTER_QMimeData * p = ( QGC_POINTER_QMimeData * ) hb_gcAllocate( sizeof( QGC_POINTER_QMimeData ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QMimeData;
p->func = hbqt_gcRelease_QMimeData;
new( & p->pq ) QPointer< QMimeData >( ( QMimeData * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QMimeData %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -77,22 +77,22 @@
* ~QModelIndex ()
*/
QT_G_FUNC( release_QModelIndex )
QT_G_FUNC( hbqt_gcRelease_QModelIndex )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QModelIndex p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QModelIndex ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QModelIndex p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QModelIndex ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QModelIndex * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QModelIndex Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QModelIndex Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QModelIndex Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QModelIndex Object Already deleted!" ) );
}
}
@@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QModelIndex( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QModelIndex;
p->func = hbqt_gcRelease_QModelIndex;
HB_TRACE( HB_TR_DEBUG, ( " new_QModelIndex %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -100,12 +100,12 @@ typedef struct
QPointer< QObject > pq;
} QGC_POINTER_QObject;
QT_G_FUNC( release_QObject )
QT_G_FUNC( hbqt_gcRelease_QObject )
{
QGC_POINTER_QObject * p = ( QGC_POINTER_QObject * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QObject p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QObject ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QObject p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QObject ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -125,16 +125,16 @@ QT_G_FUNC( release_QObject )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QObject Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QObject Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QObject Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QObject Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QObject Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QObject Object Already deleted!" ) );
}
}
@@ -143,7 +143,7 @@ void * hbqt_gcAllocate_QObject( void * pObj )
QGC_POINTER_QObject * p = ( QGC_POINTER_QObject * ) hb_gcAllocate( sizeof( QGC_POINTER_QObject ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QObject;
p->func = hbqt_gcRelease_QObject;
new( & p->pq ) QPointer< QObject >( ( QObject * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QObject %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -77,22 +77,22 @@
* ~QPoint ()
*/
QT_G_FUNC( release_QPoint )
QT_G_FUNC( hbqt_gcRelease_QPoint )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QPoint p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QPoint ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPoint p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPoint ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QPoint * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QPoint Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPoint Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPoint Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPoint Object Already deleted!" ) );
}
}
@@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QPoint( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QPoint;
p->func = hbqt_gcRelease_QPoint;
HB_TRACE( HB_TR_DEBUG, ( " new_QPoint %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -77,22 +77,22 @@
* QPointF ( qreal x, qreal y )
*/
QT_G_FUNC( release_QPointF )
QT_G_FUNC( hbqt_gcRelease_QPointF )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QPointF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QPointF ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPointF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPointF ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QPointF * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QPointF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPointF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPointF Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPointF Object Already deleted!" ) );
}
}
@@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QPointF( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QPointF;
p->func = hbqt_gcRelease_QPointF;
HB_TRACE( HB_TR_DEBUG, ( " new_QPointF %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -94,12 +94,12 @@ typedef struct
QPointer< QProcess > pq;
} QGC_POINTER_QProcess;
QT_G_FUNC( release_QProcess )
QT_G_FUNC( hbqt_gcRelease_QProcess )
{
QGC_POINTER_QProcess * p = ( QGC_POINTER_QProcess * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QProcess p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QProcess ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProcess p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProcess ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -119,16 +119,16 @@ QT_G_FUNC( release_QProcess )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QProcess Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProcess Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QProcess Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QProcess Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QProcess Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QProcess Object Already deleted!" ) );
}
}
@@ -137,7 +137,7 @@ void * hbqt_gcAllocate_QProcess( void * pObj )
QGC_POINTER_QProcess * p = ( QGC_POINTER_QProcess * ) hb_gcAllocate( sizeof( QGC_POINTER_QProcess ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QProcess;
p->func = hbqt_gcRelease_QProcess;
new( & p->pq ) QPointer< QProcess >( ( QProcess * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QProcess %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -79,22 +79,22 @@
* ~QRect ()
*/
QT_G_FUNC( release_QRect )
QT_G_FUNC( hbqt_gcRelease_QRect )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QRect p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QRect ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRect p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRect ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QRect * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QRect Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QRect Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QRect Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QRect Object Already deleted!" ) );
}
}
@@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QRect( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QRect;
p->func = hbqt_gcRelease_QRect;
HB_TRACE( HB_TR_DEBUG, ( " new_QRect %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -80,22 +80,22 @@
* ~QRectF ()
*/
QT_G_FUNC( release_QRectF )
QT_G_FUNC( hbqt_gcRelease_QRectF )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QRectF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QRectF ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRectF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRectF ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QRectF * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QRectF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QRectF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QRectF Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QRectF Object Already deleted!" ) );
}
}
@@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QRectF( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QRectF;
p->func = hbqt_gcRelease_QRectF;
HB_TRACE( HB_TR_DEBUG, ( " new_QRectF %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -82,22 +82,22 @@
* ~QRegExp ()
*/
QT_G_FUNC( release_QRegExp )
QT_G_FUNC( hbqt_gcRelease_QRegExp )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QRegExp p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QRegExp ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRegExp p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRegExp ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QRegExp * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QRegExp Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QRegExp Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QRegExp Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QRegExp Object Already deleted!" ) );
}
}
@@ -106,7 +106,7 @@ void * hbqt_gcAllocate_QRegExp( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QRegExp;
p->func = hbqt_gcRelease_QRegExp;
HB_TRACE( HB_TR_DEBUG, ( " new_QRegExp %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -76,22 +76,22 @@
* ~QResource ()
*/
QT_G_FUNC( release_QResource )
QT_G_FUNC( hbqt_gcRelease_QResource )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QResource p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QResource ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QResource p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QResource ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QResource * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QResource Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QResource Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QResource Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QResource Object Already deleted!" ) );
}
}
@@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QResource( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QResource;
p->func = hbqt_gcRelease_QResource;
HB_TRACE( HB_TR_DEBUG, ( " new_QResource %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QSignalMapper > pq;
} QGC_POINTER_QSignalMapper;
QT_G_FUNC( release_QSignalMapper )
QT_G_FUNC( hbqt_gcRelease_QSignalMapper )
{
QGC_POINTER_QSignalMapper * p = ( QGC_POINTER_QSignalMapper * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QSignalMapper p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QSignalMapper ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSignalMapper p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSignalMapper ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QSignalMapper )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QSignalMapper Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSignalMapper Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QSignalMapper Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSignalMapper Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSignalMapper Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSignalMapper Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QSignalMapper( void * pObj )
QGC_POINTER_QSignalMapper * p = ( QGC_POINTER_QSignalMapper * ) hb_gcAllocate( sizeof( QGC_POINTER_QSignalMapper ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QSignalMapper;
p->func = hbqt_gcRelease_QSignalMapper;
new( & p->pq ) QPointer< QSignalMapper >( ( QSignalMapper * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QSignalMapper %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -77,22 +77,22 @@
* ~QSize ()
*/
QT_G_FUNC( release_QSize )
QT_G_FUNC( hbqt_gcRelease_QSize )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QSize p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QSize ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSize p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSize ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QSize * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QSize Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QSize Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSize Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSize Object Already deleted!" ) );
}
}
@@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QSize( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QSize;
p->func = hbqt_gcRelease_QSize;
HB_TRACE( HB_TR_DEBUG, ( " new_QSize %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -78,22 +78,22 @@
* ~QSizeF ()
*/
QT_G_FUNC( release_QSizeF )
QT_G_FUNC( hbqt_gcRelease_QSizeF )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QSizeF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QSizeF ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizeF p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizeF ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QSizeF * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QSizeF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QSizeF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSizeF Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSizeF Object Already deleted!" ) );
}
}
@@ -102,7 +102,7 @@ void * hbqt_gcAllocate_QSizeF( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QSizeF;
p->func = hbqt_gcRelease_QSizeF;
HB_TRACE( HB_TR_DEBUG, ( " new_QSizeF %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -96,22 +96,22 @@
* QStringList ( const QList<QString> & other )
*/
QT_G_FUNC( release_QStringList )
QT_G_FUNC( hbqt_gcRelease_QStringList )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QStringList p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QStringList ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStringList p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStringList ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QStringList * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QStringList Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStringList Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStringList Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStringList Object Already deleted!" ) );
}
}
@@ -120,7 +120,7 @@ void * hbqt_gcAllocate_QStringList( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QStringList;
p->func = hbqt_gcRelease_QStringList;
HB_TRACE( HB_TR_DEBUG, ( " new_QStringList %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -85,22 +85,22 @@
* ~QTextBoundaryFinder ()
*/
QT_G_FUNC( release_QTextBoundaryFinder )
QT_G_FUNC( hbqt_gcRelease_QTextBoundaryFinder )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTextBoundaryFinder p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QTextBoundaryFinder ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBoundaryFinder p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBoundaryFinder ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QTextBoundaryFinder * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextBoundaryFinder Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextBoundaryFinder Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextBoundaryFinder Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextBoundaryFinder Object Already deleted!" ) );
}
}
@@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QTextBoundaryFinder( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTextBoundaryFinder;
p->func = hbqt_gcRelease_QTextBoundaryFinder;
HB_TRACE( HB_TR_DEBUG, ( " new_QTextBoundaryFinder %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -95,7 +95,7 @@
*
*/
QT_G_FUNC( release_QTextCodec )
QT_G_FUNC( hbqt_gcRelease_QTextCodec )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -76,22 +76,22 @@
* ~QTextDecoder ()
*/
QT_G_FUNC( release_QTextDecoder )
QT_G_FUNC( hbqt_gcRelease_QTextDecoder )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTextDecoder p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QTextDecoder ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDecoder p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDecoder ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QTextDecoder * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextDecoder Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextDecoder Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextDecoder Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextDecoder Object Already deleted!" ) );
}
}
@@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QTextDecoder( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTextDecoder;
p->func = hbqt_gcRelease_QTextDecoder;
HB_TRACE( HB_TR_DEBUG, ( " new_QTextDecoder %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -76,22 +76,22 @@
* ~QTextEncoder ()
*/
QT_G_FUNC( release_QTextEncoder )
QT_G_FUNC( hbqt_gcRelease_QTextEncoder )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTextEncoder p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QTextEncoder ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextEncoder p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextEncoder ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QTextEncoder * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextEncoder Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextEncoder Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextEncoder Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextEncoder Object Already deleted!" ) );
}
}
@@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QTextEncoder( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTextEncoder;
p->func = hbqt_gcRelease_QTextEncoder;
HB_TRACE( HB_TR_DEBUG, ( " new_QTextEncoder %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -96,22 +96,22 @@ HB_FUNC( QT_QTEXTSTREAM_PADCHAR )
}
QT_G_FUNC( release_QTextStream )
QT_G_FUNC( hbqt_gcRelease_QTextStream )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTextStream p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QTextStream ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextStream p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextStream ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QTextStream * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextStream Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextStream Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextStream Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextStream Object Already deleted!" ) );
}
}
@@ -120,7 +120,7 @@ void * hbqt_gcAllocate_QTextStream( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTextStream;
p->func = hbqt_gcRelease_QTextStream;
HB_TRACE( HB_TR_DEBUG, ( " new_QTextStream %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -86,12 +86,12 @@ typedef struct
QPointer< QThread > pq;
} QGC_POINTER_QThread;
QT_G_FUNC( release_QThread )
QT_G_FUNC( hbqt_gcRelease_QThread )
{
QGC_POINTER_QThread * p = ( QGC_POINTER_QThread * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QThread p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QThread ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QThread p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QThread ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -111,16 +111,16 @@ QT_G_FUNC( release_QThread )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QThread Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QThread Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QThread Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QThread Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QThread Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QThread Object Already deleted!" ) );
}
}
@@ -129,7 +129,7 @@ void * hbqt_gcAllocate_QThread( void * pObj )
QGC_POINTER_QThread * p = ( QGC_POINTER_QThread * ) hb_gcAllocate( sizeof( QGC_POINTER_QThread ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QThread;
p->func = hbqt_gcRelease_QThread;
new( & p->pq ) QPointer< QThread >( ( QThread * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QThread %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -75,22 +75,22 @@
* QTime ( int h, int m, int s = 0, int ms = 0 )
*/
QT_G_FUNC( release_QTime )
QT_G_FUNC( hbqt_gcRelease_QTime )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTime p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QTime ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTime p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTime ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QTime * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QTime Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTime Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTime Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTime Object Already deleted!" ) );
}
}
@@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QTime( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTime;
p->func = hbqt_gcRelease_QTime;
HB_TRACE( HB_TR_DEBUG, ( " new_QTime %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QTimer > pq;
} QGC_POINTER_QTimer;
QT_G_FUNC( release_QTimer )
QT_G_FUNC( hbqt_gcRelease_QTimer )
{
QGC_POINTER_QTimer * p = ( QGC_POINTER_QTimer * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTimer p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QTimer ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTimer p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTimer ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QTimer )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QTimer Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTimer Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QTimer Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTimer Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTimer Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTimer Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QTimer( void * pObj )
QGC_POINTER_QTimer * p = ( QGC_POINTER_QTimer * ) hb_gcAllocate( sizeof( QGC_POINTER_QTimer ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTimer;
p->func = hbqt_gcRelease_QTimer;
new( & p->pq ) QPointer< QTimer >( ( QTimer * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QTimer %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -82,12 +82,12 @@ typedef struct
QPointer< QTranslator > pq;
} QGC_POINTER_QTranslator;
QT_G_FUNC( release_QTranslator )
QT_G_FUNC( hbqt_gcRelease_QTranslator )
{
QGC_POINTER_QTranslator * p = ( QGC_POINTER_QTranslator * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QTranslator p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QTranslator ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTranslator p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTranslator ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -107,16 +107,16 @@ QT_G_FUNC( release_QTranslator )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QTranslator Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTranslator Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QTranslator Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTranslator Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTranslator Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTranslator Object Already deleted!" ) );
}
}
@@ -125,7 +125,7 @@ void * hbqt_gcAllocate_QTranslator( void * pObj )
QGC_POINTER_QTranslator * p = ( QGC_POINTER_QTranslator * ) hb_gcAllocate( sizeof( QGC_POINTER_QTranslator ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QTranslator;
p->func = hbqt_gcRelease_QTranslator;
new( & p->pq ) QPointer< QTranslator >( ( QTranslator * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QTranslator %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -84,12 +84,12 @@ typedef struct
QPointer< QUiLoader > pq;
} QGC_POINTER_QUiLoader;
QT_G_FUNC( release_QUiLoader )
QT_G_FUNC( hbqt_gcRelease_QUiLoader )
{
QGC_POINTER_QUiLoader * p = ( QGC_POINTER_QUiLoader * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QUiLoader p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QUiLoader ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QUiLoader p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QUiLoader ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -109,16 +109,16 @@ QT_G_FUNC( release_QUiLoader )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QUiLoader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QUiLoader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QUiLoader Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QUiLoader Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QUiLoader Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QUiLoader Object Already deleted!" ) );
}
}
@@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QUiLoader( void * pObj )
QGC_POINTER_QUiLoader * p = ( QGC_POINTER_QUiLoader * ) hb_gcAllocate( sizeof( QGC_POINTER_QUiLoader ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QUiLoader;
p->func = hbqt_gcRelease_QUiLoader;
new( & p->pq ) QPointer< QUiLoader >( ( QUiLoader * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QUiLoader %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -110,22 +110,22 @@ HB_FUNC( QT_QURL_SETQUERYDELIMITERS )
hbqt_par_QUrl( 1 )->setQueryDelimiters( ( char ) hb_parni( 2 ), ( char ) hb_parni( 3 ) );
}
QT_G_FUNC( release_QUrl )
QT_G_FUNC( hbqt_gcRelease_QUrl )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QUrl p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QUrl ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QUrl p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QUrl ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QUrl * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QUrl Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QUrl Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QUrl Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QUrl Object Already deleted!" ) );
}
}
@@ -134,7 +134,7 @@ void * hbqt_gcAllocate_QUrl( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QUrl;
p->func = hbqt_gcRelease_QUrl;
HB_TRACE( HB_TR_DEBUG, ( " new_QUrl %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -139,22 +139,22 @@ QVariant ( const QRegExp & regExp )
~QVariant ()
*/
QT_G_FUNC( release_QVariant )
QT_G_FUNC( hbqt_gcRelease_QVariant )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QVariant p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QVariant ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QVariant p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QVariant ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QVariant * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QVariant Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QVariant Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QVariant Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QVariant Object Already deleted!" ) );
}
}
@@ -163,7 +163,7 @@ void * hbqt_gcAllocate_QVariant( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QVariant;
p->func = hbqt_gcRelease_QVariant;
HB_TRACE( HB_TR_DEBUG, ( " new_QVariant %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -76,7 +76,7 @@
* ~QAbstractButton ()
*/
QT_G_FUNC( release_QAbstractButton )
QT_G_FUNC( hbqt_gcRelease_QAbstractButton )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -79,7 +79,7 @@
* virtual ~QAbstractItemDelegate ()
*/
QT_G_FUNC( release_QAbstractItemDelegate )
QT_G_FUNC( hbqt_gcRelease_QAbstractItemDelegate )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -86,7 +86,7 @@
* ~QAbstractItemView ()
*/
QT_G_FUNC( release_QAbstractItemView )
QT_G_FUNC( hbqt_gcRelease_QAbstractItemView )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -90,7 +90,7 @@
* QAbstractPrintDialog ( QPrinter * printer, QWidget * parent = 0 )
*/
QT_G_FUNC( release_QAbstractPrintDialog )
QT_G_FUNC( hbqt_gcRelease_QAbstractPrintDialog )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -75,7 +75,7 @@
* ~QAbstractProxyModel ()
*/
QT_G_FUNC( release_QAbstractProxyModel )
QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -76,7 +76,7 @@
* ~QAbstractScrollArea ()
*/
QT_G_FUNC( release_QAbstractScrollArea )
QT_G_FUNC( hbqt_gcRelease_QAbstractScrollArea )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -80,7 +80,7 @@
* ~QAbstractSlider ()
*/
QT_G_FUNC( release_QAbstractSlider )
QT_G_FUNC( hbqt_gcRelease_QAbstractSlider )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -83,7 +83,7 @@
* ~QAbstractSpinBox ()
*/
QT_G_FUNC( release_QAbstractSpinBox )
QT_G_FUNC( hbqt_gcRelease_QAbstractSpinBox )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -75,7 +75,7 @@
*
*/
QT_G_FUNC( release_QAbstractTextDocumentLayout )
QT_G_FUNC( hbqt_gcRelease_QAbstractTextDocumentLayout )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -102,12 +102,12 @@ typedef struct
QPointer< QAction > pq;
} QGC_POINTER_QAction;
QT_G_FUNC( release_QAction )
QT_G_FUNC( hbqt_gcRelease_QAction )
{
QGC_POINTER_QAction * p = ( QGC_POINTER_QAction * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QAction p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QAction ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QAction p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QAction ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -127,16 +127,16 @@ QT_G_FUNC( release_QAction )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QAction Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QAction Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QAction Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QAction Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QAction Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QAction Object Already deleted!" ) );
}
}
@@ -145,7 +145,7 @@ void * hbqt_gcAllocate_QAction( void * pObj )
QGC_POINTER_QAction * p = ( QGC_POINTER_QAction * ) hb_gcAllocate( sizeof( QGC_POINTER_QAction ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QAction;
p->func = hbqt_gcRelease_QAction;
new( & p->pq ) QPointer< QAction >( ( QAction * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QAction %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -91,12 +91,12 @@ typedef struct
QPointer< QActionGroup > pq;
} QGC_POINTER_QActionGroup;
QT_G_FUNC( release_QActionGroup )
QT_G_FUNC( hbqt_gcRelease_QActionGroup )
{
QGC_POINTER_QActionGroup * p = ( QGC_POINTER_QActionGroup * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QActionGroup p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QActionGroup ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QActionGroup p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QActionGroup ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -116,16 +116,16 @@ QT_G_FUNC( release_QActionGroup )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QActionGroup Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QActionGroup Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QActionGroup Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QActionGroup Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QActionGroup Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QActionGroup Object Already deleted!" ) );
}
}
@@ -134,7 +134,7 @@ void * hbqt_gcAllocate_QActionGroup( void * pObj )
QGC_POINTER_QActionGroup * p = ( QGC_POINTER_QActionGroup * ) hb_gcAllocate( sizeof( QGC_POINTER_QActionGroup ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QActionGroup;
p->func = hbqt_gcRelease_QActionGroup;
new( & p->pq ) QPointer< QActionGroup >( ( QActionGroup * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QActionGroup %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -91,10 +91,10 @@
#include <QtCore/QLocale>
#include <QtGui/QIcon>
void release_codeblocks();
//void release_codeblocks();
static QApplication * app = NULL;
static bool hbqtinit = false;
static QApplication * s_app = NULL;
static bool s_hbqtinit = false;
static int s_argc;
static char ** s_argv;
@@ -123,12 +123,12 @@ static void hbqt_Init( void * cargo )
s_argc = hb_cmdargARGC();
s_argv = hb_cmdargARGV();
app = new QApplication( s_argc, s_argv );
s_app = new QApplication( s_argc, s_argv );
if( app )
hbqtinit = true;
if( s_app )
s_hbqtinit = true;
if( ! hbqtinit )
if( ! s_hbqtinit )
hb_errInternal( 11001, "hbqt_Init(): QT Initilization Error.", NULL, NULL );
hb_cmdargInit( s_argc, s_argv );
@@ -149,12 +149,12 @@ HB_CALL_ON_STARTUP_END( _hb_hbqt_init_ )
HB_FUNC( QT_QAPPLICATION_EXECUTE )
{
hb_retni( app->exec() );
hb_retni( s_app->exec() );
}
HB_FUNC( QT_QAPPLICATION_QUIT )
{
app->quit();
s_app->quit();
}
typedef struct
@@ -164,12 +164,12 @@ typedef struct
QPointer< QApplication > pq;
} QGC_POINTER_QApplication;
QT_G_FUNC( release_QApplication )
QT_G_FUNC( hbqt_gcRelease_QApplication )
{
QGC_POINTER_QApplication * p = ( QGC_POINTER_QApplication * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QApplication p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QApplication ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QApplication p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QApplication ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -189,16 +189,16 @@ QT_G_FUNC( release_QApplication )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QApplication Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QApplication Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QApplication Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QApplication Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QApplication Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QApplication Object Already deleted!" ) );
}
}
@@ -207,7 +207,7 @@ void * hbqt_gcAllocate_QApplication( void * pObj )
QGC_POINTER_QApplication * p = ( QGC_POINTER_QApplication * ) hb_gcAllocate( sizeof( QGC_POINTER_QApplication ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QApplication;
p->func = hbqt_gcRelease_QApplication;
new( & p->pq ) QPointer< QApplication >( ( QApplication * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QApplication %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
@@ -217,7 +217,7 @@ HB_FUNC( QT_QAPPLICATION )
{
void * pObj = NULL;
pObj = ( QApplication * ) app ;
pObj = ( QApplication * ) s_app ;
hb_retptrGC( hbqt_gcAllocate_QApplication( pObj ) );
}

View File

@@ -80,22 +80,22 @@
* ~QBitmap ()
*/
QT_G_FUNC( release_QBitmap )
QT_G_FUNC( hbqt_gcRelease_QBitmap )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QBitmap p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QBitmap ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBitmap p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBitmap ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QBitmap * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QBitmap Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QBitmap Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QBitmap Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QBitmap Object Already deleted!" ) );
}
}
@@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QBitmap( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QBitmap;
p->func = hbqt_gcRelease_QBitmap;
HB_TRACE( HB_TR_DEBUG, ( " new_QBitmap %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -87,12 +87,12 @@ typedef struct
QPointer< QBoxLayout > pq;
} QGC_POINTER_QBoxLayout;
QT_G_FUNC( release_QBoxLayout )
QT_G_FUNC( hbqt_gcRelease_QBoxLayout )
{
QGC_POINTER_QBoxLayout * p = ( QGC_POINTER_QBoxLayout * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QBoxLayout p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QBoxLayout ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBoxLayout p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBoxLayout ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -112,16 +112,16 @@ QT_G_FUNC( release_QBoxLayout )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QBoxLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBoxLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QBoxLayout Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QBoxLayout Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QBoxLayout Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QBoxLayout Object Already deleted!" ) );
}
}
@@ -130,7 +130,7 @@ void * hbqt_gcAllocate_QBoxLayout( void * pObj )
QGC_POINTER_QBoxLayout * p = ( QGC_POINTER_QBoxLayout * ) hb_gcAllocate( sizeof( QGC_POINTER_QBoxLayout ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QBoxLayout;
p->func = hbqt_gcRelease_QBoxLayout;
new( & p->pq ) QPointer< QBoxLayout >( ( QBoxLayout * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QBoxLayout %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -85,22 +85,22 @@
* ~QBrush ()
*/
QT_G_FUNC( release_QBrush )
QT_G_FUNC( hbqt_gcRelease_QBrush )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QBrush p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QBrush ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBrush p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QBrush ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QBrush * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QBrush Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QBrush Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QBrush Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QBrush Object Already deleted!" ) );
}
}
@@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QBrush( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QBrush;
p->func = hbqt_gcRelease_QBrush;
HB_TRACE( HB_TR_DEBUG, ( " new_QBrush %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -92,12 +92,12 @@ typedef struct
QPointer< QButtonGroup > pq;
} QGC_POINTER_QButtonGroup;
QT_G_FUNC( release_QButtonGroup )
QT_G_FUNC( hbqt_gcRelease_QButtonGroup )
{
QGC_POINTER_QButtonGroup * p = ( QGC_POINTER_QButtonGroup * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QButtonGroup p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QButtonGroup ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QButtonGroup p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QButtonGroup ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -117,16 +117,16 @@ QT_G_FUNC( release_QButtonGroup )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QButtonGroup Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QButtonGroup Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QButtonGroup Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QButtonGroup Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QButtonGroup Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QButtonGroup Object Already deleted!" ) );
}
}
@@ -135,7 +135,7 @@ void * hbqt_gcAllocate_QButtonGroup( void * pObj )
QGC_POINTER_QButtonGroup * p = ( QGC_POINTER_QButtonGroup * ) hb_gcAllocate( sizeof( QGC_POINTER_QButtonGroup ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QButtonGroup;
p->func = hbqt_gcRelease_QButtonGroup;
new( & p->pq ) QPointer< QButtonGroup >( ( QButtonGroup * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QButtonGroup %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -98,12 +98,12 @@ typedef struct
QPointer< QCalendarWidget > pq;
} QGC_POINTER_QCalendarWidget;
QT_G_FUNC( release_QCalendarWidget )
QT_G_FUNC( hbqt_gcRelease_QCalendarWidget )
{
QGC_POINTER_QCalendarWidget * p = ( QGC_POINTER_QCalendarWidget * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QCalendarWidget p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QCalendarWidget ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCalendarWidget p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCalendarWidget ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -123,16 +123,16 @@ QT_G_FUNC( release_QCalendarWidget )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QCalendarWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCalendarWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QCalendarWidget Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QCalendarWidget Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QCalendarWidget Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QCalendarWidget Object Already deleted!" ) );
}
}
@@ -141,7 +141,7 @@ void * hbqt_gcAllocate_QCalendarWidget( void * pObj )
QGC_POINTER_QCalendarWidget * p = ( QGC_POINTER_QCalendarWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QCalendarWidget ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QCalendarWidget;
p->func = hbqt_gcRelease_QCalendarWidget;
new( & p->pq ) QPointer< QCalendarWidget >( ( QCalendarWidget * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QCalendarWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QCheckBox > pq;
} QGC_POINTER_QCheckBox;
QT_G_FUNC( release_QCheckBox )
QT_G_FUNC( hbqt_gcRelease_QCheckBox )
{
QGC_POINTER_QCheckBox * p = ( QGC_POINTER_QCheckBox * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QCheckBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QCheckBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCheckBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCheckBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QCheckBox )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QCheckBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCheckBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QCheckBox Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QCheckBox Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QCheckBox Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QCheckBox Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QCheckBox( void * pObj )
QGC_POINTER_QCheckBox * p = ( QGC_POINTER_QCheckBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QCheckBox ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QCheckBox;
p->func = hbqt_gcRelease_QCheckBox;
new( & p->pq ) QPointer< QCheckBox >( ( QCheckBox * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QCheckBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -81,7 +81,7 @@
*
*/
QT_G_FUNC( release_QClipboard )
QT_G_FUNC( hbqt_gcRelease_QClipboard )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -85,22 +85,22 @@ QColor ( const QColor & color )
~QColor ()
*/
QT_G_FUNC( release_QColor )
QT_G_FUNC( hbqt_gcRelease_QColor )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QColor p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QColor ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QColor p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QColor ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QColor * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QColor Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QColor Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QColor Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QColor Object Already deleted!" ) );
}
}
@@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QColor( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QColor;
p->func = hbqt_gcRelease_QColor;
HB_TRACE( HB_TR_DEBUG, ( " new_QColor %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -88,12 +88,12 @@ typedef struct
QPointer< QColorDialog > pq;
} QGC_POINTER_QColorDialog;
QT_G_FUNC( release_QColorDialog )
QT_G_FUNC( hbqt_gcRelease_QColorDialog )
{
QGC_POINTER_QColorDialog * p = ( QGC_POINTER_QColorDialog * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QColorDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QColorDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QColorDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QColorDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -113,16 +113,16 @@ QT_G_FUNC( release_QColorDialog )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QColorDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QColorDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QColorDialog Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QColorDialog Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QColorDialog Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QColorDialog Object Already deleted!" ) );
}
}
@@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QColorDialog( void * pObj )
QGC_POINTER_QColorDialog * p = ( QGC_POINTER_QColorDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QColorDialog ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QColorDialog;
p->func = hbqt_gcRelease_QColorDialog;
new( & p->pq ) QPointer< QColorDialog >( ( QColorDialog * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QColorDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -88,12 +88,12 @@ typedef struct
QPointer< QComboBox > pq;
} QGC_POINTER_QComboBox;
QT_G_FUNC( release_QComboBox )
QT_G_FUNC( hbqt_gcRelease_QComboBox )
{
QGC_POINTER_QComboBox * p = ( QGC_POINTER_QComboBox * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QComboBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QComboBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QComboBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QComboBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -113,16 +113,16 @@ QT_G_FUNC( release_QComboBox )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QComboBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QComboBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QComboBox Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QComboBox Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QComboBox Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QComboBox Object Already deleted!" ) );
}
}
@@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QComboBox( void * pObj )
QGC_POINTER_QComboBox * p = ( QGC_POINTER_QComboBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QComboBox ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QComboBox;
p->func = hbqt_gcRelease_QComboBox;
new( & p->pq ) QPointer< QComboBox >( ( QComboBox * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QComboBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -84,12 +84,12 @@ typedef struct
QPointer< QCommandLinkButton > pq;
} QGC_POINTER_QCommandLinkButton;
QT_G_FUNC( release_QCommandLinkButton )
QT_G_FUNC( hbqt_gcRelease_QCommandLinkButton )
{
QGC_POINTER_QCommandLinkButton * p = ( QGC_POINTER_QCommandLinkButton * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QCommandLinkButton p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QCommandLinkButton ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCommandLinkButton p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCommandLinkButton ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -109,16 +109,16 @@ QT_G_FUNC( release_QCommandLinkButton )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QCommandLinkButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCommandLinkButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QCommandLinkButton Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QCommandLinkButton Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QCommandLinkButton Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QCommandLinkButton Object Already deleted!" ) );
}
}
@@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QCommandLinkButton( void * pObj )
QGC_POINTER_QCommandLinkButton * p = ( QGC_POINTER_QCommandLinkButton * ) hb_gcAllocate( sizeof( QGC_POINTER_QCommandLinkButton ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QCommandLinkButton;
p->func = hbqt_gcRelease_QCommandLinkButton;
new( & p->pq ) QPointer< QCommandLinkButton >( ( QCommandLinkButton * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QCommandLinkButton %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -82,12 +82,12 @@ typedef struct
QPointer< QCommonStyle > pq;
} QGC_POINTER_QCommonStyle;
QT_G_FUNC( release_QCommonStyle )
QT_G_FUNC( hbqt_gcRelease_QCommonStyle )
{
QGC_POINTER_QCommonStyle * p = ( QGC_POINTER_QCommonStyle * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QCommonStyle p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QCommonStyle ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCommonStyle p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCommonStyle ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -107,16 +107,16 @@ QT_G_FUNC( release_QCommonStyle )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QCommonStyle Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCommonStyle Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QCommonStyle Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QCommonStyle Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QCommonStyle Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QCommonStyle Object Already deleted!" ) );
}
}
@@ -125,7 +125,7 @@ void * hbqt_gcAllocate_QCommonStyle( void * pObj )
QGC_POINTER_QCommonStyle * p = ( QGC_POINTER_QCommonStyle * ) hb_gcAllocate( sizeof( QGC_POINTER_QCommonStyle ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QCommonStyle;
p->func = hbqt_gcRelease_QCommonStyle;
new( & p->pq ) QPointer< QCommonStyle >( ( QCommonStyle * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QCommonStyle %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -89,12 +89,12 @@ typedef struct
QPointer< QCompleter > pq;
} QGC_POINTER_QCompleter;
QT_G_FUNC( release_QCompleter )
QT_G_FUNC( hbqt_gcRelease_QCompleter )
{
QGC_POINTER_QCompleter * p = ( QGC_POINTER_QCompleter * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QCompleter p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QCompleter ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCompleter p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCompleter ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -114,16 +114,16 @@ QT_G_FUNC( release_QCompleter )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QCompleter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCompleter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QCompleter Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QCompleter Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QCompleter Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QCompleter Object Already deleted!" ) );
}
}
@@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QCompleter( void * pObj )
QGC_POINTER_QCompleter * p = ( QGC_POINTER_QCompleter * ) hb_gcAllocate( sizeof( QGC_POINTER_QCompleter ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QCompleter;
p->func = hbqt_gcRelease_QCompleter;
new( & p->pq ) QPointer< QCompleter >( ( QCompleter * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QCompleter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -83,22 +83,22 @@
* QConicalGradient ( qreal cx, qreal cy, qreal angle )
*/
QT_G_FUNC( release_QConicalGradient )
QT_G_FUNC( hbqt_gcRelease_QConicalGradient )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QConicalGradient p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QConicalGradient ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QConicalGradient p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QConicalGradient ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QConicalGradient * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QConicalGradient Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QConicalGradient Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QConicalGradient Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QConicalGradient Object Already deleted!" ) );
}
}
@@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QConicalGradient( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QConicalGradient;
p->func = hbqt_gcRelease_QConicalGradient;
HB_TRACE( HB_TR_DEBUG, ( " new_QConicalGradient %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -80,22 +80,22 @@
* QContextMenuEvent ( Reason reason, const QPoint & pos )
*/
QT_G_FUNC( release_QContextMenuEvent )
QT_G_FUNC( hbqt_gcRelease_QContextMenuEvent )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QContextMenuEvent p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QContextMenuEvent ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QContextMenuEvent p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QContextMenuEvent ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QContextMenuEvent * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QContextMenuEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QContextMenuEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QContextMenuEvent Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QContextMenuEvent Object Already deleted!" ) );
}
}
@@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QContextMenuEvent( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QContextMenuEvent;
p->func = hbqt_gcRelease_QContextMenuEvent;
HB_TRACE( HB_TR_DEBUG, ( " new_QContextMenuEvent %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -82,22 +82,22 @@
* ~QCursor ()
*/
QT_G_FUNC( release_QCursor )
QT_G_FUNC( hbqt_gcRelease_QCursor )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QCursor p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QCursor ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCursor p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QCursor ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QCursor * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QCursor Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QCursor Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QCursor Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QCursor Object Already deleted!" ) );
}
}
@@ -106,7 +106,7 @@ void * hbqt_gcAllocate_QCursor( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QCursor;
p->func = hbqt_gcRelease_QCursor;
HB_TRACE( HB_TR_DEBUG, ( " new_QCursor %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QDateEdit > pq;
} QGC_POINTER_QDateEdit;
QT_G_FUNC( release_QDateEdit )
QT_G_FUNC( hbqt_gcRelease_QDateEdit )
{
QGC_POINTER_QDateEdit * p = ( QGC_POINTER_QDateEdit * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDateEdit p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDateEdit ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateEdit p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateEdit ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QDateEdit )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDateEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDateEdit Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDateEdit Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDateEdit Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDateEdit Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QDateEdit( void * pObj )
QGC_POINTER_QDateEdit * p = ( QGC_POINTER_QDateEdit * ) hb_gcAllocate( sizeof( QGC_POINTER_QDateEdit ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDateEdit;
p->func = hbqt_gcRelease_QDateEdit;
new( & p->pq ) QPointer< QDateEdit >( ( QDateEdit * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDateEdit %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -90,12 +90,12 @@ typedef struct
QPointer< QDateTimeEdit > pq;
} QGC_POINTER_QDateTimeEdit;
QT_G_FUNC( release_QDateTimeEdit )
QT_G_FUNC( hbqt_gcRelease_QDateTimeEdit )
{
QGC_POINTER_QDateTimeEdit * p = ( QGC_POINTER_QDateTimeEdit * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDateTimeEdit p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDateTimeEdit ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateTimeEdit p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateTimeEdit ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -115,16 +115,16 @@ QT_G_FUNC( release_QDateTimeEdit )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDateTimeEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDateTimeEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDateTimeEdit Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDateTimeEdit Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDateTimeEdit Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDateTimeEdit Object Already deleted!" ) );
}
}
@@ -133,7 +133,7 @@ void * hbqt_gcAllocate_QDateTimeEdit( void * pObj )
QGC_POINTER_QDateTimeEdit * p = ( QGC_POINTER_QDateTimeEdit * ) hb_gcAllocate( sizeof( QGC_POINTER_QDateTimeEdit ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDateTimeEdit;
p->func = hbqt_gcRelease_QDateTimeEdit;
new( & p->pq ) QPointer< QDateTimeEdit >( ( QDateTimeEdit * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDateTimeEdit %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QDesktopWidget > pq;
} QGC_POINTER_QDesktopWidget;
QT_G_FUNC( release_QDesktopWidget )
QT_G_FUNC( hbqt_gcRelease_QDesktopWidget )
{
QGC_POINTER_QDesktopWidget * p = ( QGC_POINTER_QDesktopWidget * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDesktopWidget p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDesktopWidget ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDesktopWidget p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDesktopWidget ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QDesktopWidget )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDesktopWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDesktopWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDesktopWidget Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDesktopWidget Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDesktopWidget Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDesktopWidget Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QDesktopWidget( void * pObj )
QGC_POINTER_QDesktopWidget * p = ( QGC_POINTER_QDesktopWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QDesktopWidget ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDesktopWidget;
p->func = hbqt_gcRelease_QDesktopWidget;
new( & p->pq ) QPointer< QDesktopWidget >( ( QDesktopWidget * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDesktopWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QDial > pq;
} QGC_POINTER_QDial;
QT_G_FUNC( release_QDial )
QT_G_FUNC( hbqt_gcRelease_QDial )
{
QGC_POINTER_QDial * p = ( QGC_POINTER_QDial * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDial p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDial ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDial p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDial ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QDial )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDial Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDial Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDial Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDial Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDial Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDial Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QDial( void * pObj )
QGC_POINTER_QDial * p = ( QGC_POINTER_QDial * ) hb_gcAllocate( sizeof( QGC_POINTER_QDial ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDial;
p->func = hbqt_gcRelease_QDial;
new( & p->pq ) QPointer< QDial >( ( QDial * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDial %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -87,12 +87,12 @@ typedef struct
QPointer< QDialog > pq;
} QGC_POINTER_QDialog;
QT_G_FUNC( release_QDialog )
QT_G_FUNC( hbqt_gcRelease_QDialog )
{
QGC_POINTER_QDialog * p = ( QGC_POINTER_QDialog * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -112,16 +112,16 @@ QT_G_FUNC( release_QDialog )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDialog Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDialog Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDialog Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDialog Object Already deleted!" ) );
}
}
@@ -130,7 +130,7 @@ void * hbqt_gcAllocate_QDialog( void * pObj )
QGC_POINTER_QDialog * p = ( QGC_POINTER_QDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QDialog ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDialog;
p->func = hbqt_gcRelease_QDialog;
new( & p->pq ) QPointer< QDialog >( ( QDialog * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -88,12 +88,12 @@ typedef struct
QPointer< QDirModel > pq;
} QGC_POINTER_QDirModel;
QT_G_FUNC( release_QDirModel )
QT_G_FUNC( hbqt_gcRelease_QDirModel )
{
QGC_POINTER_QDirModel * p = ( QGC_POINTER_QDirModel * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDirModel p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDirModel ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDirModel p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDirModel ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -113,16 +113,16 @@ QT_G_FUNC( release_QDirModel )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDirModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDirModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDirModel Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDirModel Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDirModel Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDirModel Object Already deleted!" ) );
}
}
@@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QDirModel( void * pObj )
QGC_POINTER_QDirModel * p = ( QGC_POINTER_QDirModel * ) hb_gcAllocate( sizeof( QGC_POINTER_QDirModel ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDirModel;
p->func = hbqt_gcRelease_QDirModel;
new( & p->pq ) QPointer< QDirModel >( ( QDirModel * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDirModel %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -89,12 +89,12 @@ typedef struct
QPointer< QDockWidget > pq;
} QGC_POINTER_QDockWidget;
QT_G_FUNC( release_QDockWidget )
QT_G_FUNC( hbqt_gcRelease_QDockWidget )
{
QGC_POINTER_QDockWidget * p = ( QGC_POINTER_QDockWidget * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDockWidget p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDockWidget ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDockWidget p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDockWidget ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -114,16 +114,16 @@ QT_G_FUNC( release_QDockWidget )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDockWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDockWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDockWidget Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDockWidget Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDockWidget Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDockWidget Object Already deleted!" ) );
}
}
@@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QDockWidget( void * pObj )
QGC_POINTER_QDockWidget * p = ( QGC_POINTER_QDockWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QDockWidget ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDockWidget;
p->func = hbqt_gcRelease_QDockWidget;
new( & p->pq ) QPointer< QDockWidget >( ( QDockWidget * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDockWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -82,12 +82,12 @@ typedef struct
QPointer< QDoubleSpinBox > pq;
} QGC_POINTER_QDoubleSpinBox;
QT_G_FUNC( release_QDoubleSpinBox )
QT_G_FUNC( hbqt_gcRelease_QDoubleSpinBox )
{
QGC_POINTER_QDoubleSpinBox * p = ( QGC_POINTER_QDoubleSpinBox * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QDoubleSpinBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QDoubleSpinBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDoubleSpinBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDoubleSpinBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -107,16 +107,16 @@ QT_G_FUNC( release_QDoubleSpinBox )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QDoubleSpinBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QDoubleSpinBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QDoubleSpinBox Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QDoubleSpinBox Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QDoubleSpinBox Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QDoubleSpinBox Object Already deleted!" ) );
}
}
@@ -125,7 +125,7 @@ void * hbqt_gcAllocate_QDoubleSpinBox( void * pObj )
QGC_POINTER_QDoubleSpinBox * p = ( QGC_POINTER_QDoubleSpinBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QDoubleSpinBox ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QDoubleSpinBox;
p->func = hbqt_gcRelease_QDoubleSpinBox;
new( & p->pq ) QPointer< QDoubleSpinBox >( ( QDoubleSpinBox * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QDoubleSpinBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -75,7 +75,7 @@
* QDragEnterEvent ( const QPoint & point, Qt::DropActions actions, const QMimeData * data, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers )
*/
QT_G_FUNC( release_QDragEnterEvent )
QT_G_FUNC( hbqt_gcRelease_QDragEnterEvent )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -75,7 +75,7 @@
* QDragLeaveEvent ()
*/
QT_G_FUNC( release_QDragLeaveEvent )
QT_G_FUNC( hbqt_gcRelease_QDragLeaveEvent )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -76,7 +76,7 @@
* ~QDragMoveEvent ()
*/
QT_G_FUNC( release_QDragMoveEvent )
QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -75,7 +75,7 @@
* QDropEvent ( const QPoint & pos, Qt::DropActions actions, const QMimeData * data, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Type type = Drop )
*/
QT_G_FUNC( release_QDropEvent )
QT_G_FUNC( hbqt_gcRelease_QDropEvent )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QErrorMessage > pq;
} QGC_POINTER_QErrorMessage;
QT_G_FUNC( release_QErrorMessage )
QT_G_FUNC( hbqt_gcRelease_QErrorMessage )
{
QGC_POINTER_QErrorMessage * p = ( QGC_POINTER_QErrorMessage * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QErrorMessage p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QErrorMessage ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QErrorMessage p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QErrorMessage ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QErrorMessage )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QErrorMessage Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QErrorMessage Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QErrorMessage Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QErrorMessage Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QErrorMessage Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QErrorMessage Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QErrorMessage( void * pObj )
QGC_POINTER_QErrorMessage * p = ( QGC_POINTER_QErrorMessage * ) hb_gcAllocate( sizeof( QGC_POINTER_QErrorMessage ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QErrorMessage;
p->func = hbqt_gcRelease_QErrorMessage;
new( & p->pq ) QPointer< QErrorMessage >( ( QErrorMessage * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QErrorMessage %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -110,12 +110,12 @@ typedef struct
QPointer< QFileDialog > pq;
} QGC_POINTER_QFileDialog;
QT_G_FUNC( release_QFileDialog )
QT_G_FUNC( hbqt_gcRelease_QFileDialog )
{
QGC_POINTER_QFileDialog * p = ( QGC_POINTER_QFileDialog * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFileDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QFileDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -135,16 +135,16 @@ QT_G_FUNC( release_QFileDialog )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QFileDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QFileDialog Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFileDialog Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFileDialog Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFileDialog Object Already deleted!" ) );
}
}
@@ -153,7 +153,7 @@ void * hbqt_gcAllocate_QFileDialog( void * pObj )
QGC_POINTER_QFileDialog * p = ( QGC_POINTER_QFileDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QFileDialog ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFileDialog;
p->func = hbqt_gcRelease_QFileDialog;
new( & p->pq ) QPointer< QFileDialog >( ( QFileDialog * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QFileDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -79,22 +79,22 @@
* virtual ~QFileIconProvider ()
*/
QT_G_FUNC( release_QFileIconProvider )
QT_G_FUNC( hbqt_gcRelease_QFileIconProvider )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFileIconProvider p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QFileIconProvider ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileIconProvider p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileIconProvider ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QFileIconProvider * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QFileIconProvider Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFileIconProvider Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFileIconProvider Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFileIconProvider Object Already deleted!" ) );
}
}
@@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QFileIconProvider( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFileIconProvider;
p->func = hbqt_gcRelease_QFileIconProvider;
HB_TRACE( HB_TR_DEBUG, ( " new_QFileIconProvider %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -87,12 +87,12 @@ typedef struct
QPointer< QFileSystemModel > pq;
} QGC_POINTER_QFileSystemModel;
QT_G_FUNC( release_QFileSystemModel )
QT_G_FUNC( hbqt_gcRelease_QFileSystemModel )
{
QGC_POINTER_QFileSystemModel * p = ( QGC_POINTER_QFileSystemModel * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFileSystemModel p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QFileSystemModel ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileSystemModel p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileSystemModel ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -112,16 +112,16 @@ QT_G_FUNC( release_QFileSystemModel )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QFileSystemModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFileSystemModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QFileSystemModel Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFileSystemModel Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFileSystemModel Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFileSystemModel Object Already deleted!" ) );
}
}
@@ -130,7 +130,7 @@ void * hbqt_gcAllocate_QFileSystemModel( void * pObj )
QGC_POINTER_QFileSystemModel * p = ( QGC_POINTER_QFileSystemModel * ) hb_gcAllocate( sizeof( QGC_POINTER_QFileSystemModel ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFileSystemModel;
p->func = hbqt_gcRelease_QFileSystemModel;
new( & p->pq ) QPointer< QFileSystemModel >( ( QFileSystemModel * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QFileSystemModel %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -75,7 +75,7 @@
* QFocusEvent ( Type type, Qt::FocusReason reason = Qt::OtherFocusReason )
*/
QT_G_FUNC( release_QFocusEvent )
QT_G_FUNC( hbqt_gcRelease_QFocusEvent )
{
HB_SYMBOL_UNUSED( Cargo );
}

View File

@@ -83,12 +83,12 @@ typedef struct
QPointer< QFocusFrame > pq;
} QGC_POINTER_QFocusFrame;
QT_G_FUNC( release_QFocusFrame )
QT_G_FUNC( hbqt_gcRelease_QFocusFrame )
{
QGC_POINTER_QFocusFrame * p = ( QGC_POINTER_QFocusFrame * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFocusFrame p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QFocusFrame ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFocusFrame p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFocusFrame ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -108,16 +108,16 @@ QT_G_FUNC( release_QFocusFrame )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QFocusFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFocusFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QFocusFrame Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFocusFrame Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFocusFrame Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFocusFrame Object Already deleted!" ) );
}
}
@@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QFocusFrame( void * pObj )
QGC_POINTER_QFocusFrame * p = ( QGC_POINTER_QFocusFrame * ) hb_gcAllocate( sizeof( QGC_POINTER_QFocusFrame ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFocusFrame;
p->func = hbqt_gcRelease_QFocusFrame;
new( & p->pq ) QPointer< QFocusFrame >( ( QFocusFrame * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QFocusFrame %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -89,22 +89,22 @@
* ~QFont ()
*/
QT_G_FUNC( release_QFont )
QT_G_FUNC( hbqt_gcRelease_QFont )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFont p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QFont ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFont p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFont ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QFont * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QFont Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFont Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFont Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFont Object Already deleted!" ) );
}
}
@@ -113,7 +113,7 @@ void * hbqt_gcAllocate_QFont( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFont;
p->func = hbqt_gcRelease_QFont;
HB_TRACE( HB_TR_DEBUG, ( " new_QFont %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -88,12 +88,12 @@ typedef struct
QPointer< QFontComboBox > pq;
} QGC_POINTER_QFontComboBox;
QT_G_FUNC( release_QFontComboBox )
QT_G_FUNC( hbqt_gcRelease_QFontComboBox )
{
QGC_POINTER_QFontComboBox * p = ( QGC_POINTER_QFontComboBox * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFontComboBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QFontComboBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontComboBox p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontComboBox ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -113,16 +113,16 @@ QT_G_FUNC( release_QFontComboBox )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QFontComboBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontComboBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QFontComboBox Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFontComboBox Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFontComboBox Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFontComboBox Object Already deleted!" ) );
}
}
@@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QFontComboBox( void * pObj )
QGC_POINTER_QFontComboBox * p = ( QGC_POINTER_QFontComboBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QFontComboBox ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFontComboBox;
p->func = hbqt_gcRelease_QFontComboBox;
new( & p->pq ) QPointer< QFontComboBox >( ( QFontComboBox * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QFontComboBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

View File

@@ -93,22 +93,22 @@
* QFontDatabase ()
*/
QT_G_FUNC( release_QFontDatabase )
QT_G_FUNC( hbqt_gcRelease_QFontDatabase )
{
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFontDatabase p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "release_QFontDatabase ph=%p", p->ph ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontDatabase p=%p", p ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontDatabase ph=%p", p->ph ) );
if( p && p->ph )
{
delete ( ( QFontDatabase * ) p->ph );
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "YES release_QFontDatabase Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFontDatabase Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFontDatabase Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFontDatabase Object Already deleted!" ) );
}
}
@@ -117,7 +117,7 @@ void * hbqt_gcAllocate_QFontDatabase( void * pObj )
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFontDatabase;
p->func = hbqt_gcRelease_QFontDatabase;
HB_TRACE( HB_TR_DEBUG, ( " new_QFontDatabase %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );
}

View File

@@ -88,12 +88,12 @@ typedef struct
QPointer< QFontDialog > pq;
} QGC_POINTER_QFontDialog;
QT_G_FUNC( release_QFontDialog )
QT_G_FUNC( hbqt_gcRelease_QFontDialog )
{
QGC_POINTER_QFontDialog * p = ( QGC_POINTER_QFontDialog * ) Cargo;
HB_TRACE( HB_TR_DEBUG, ( "release_QFontDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "release_QFontDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontDialog p=%p", p));
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontDialog ph=%p pq=%p", p->ph, (void *)(p->pq)));
if( p && p->ph && p->pq )
{
@@ -113,16 +113,16 @@ QT_G_FUNC( release_QFontDialog )
break;
}
p->ph = NULL;
HB_TRACE( HB_TR_DEBUG, ( "release_QFontDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "NO release_QFontDialog Object Name Missing!" ) );
HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFontDialog Object Name Missing!" ) );
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFontDialog Object Already deleted!" ) );
HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFontDialog Object Already deleted!" ) );
}
}
@@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QFontDialog( void * pObj )
QGC_POINTER_QFontDialog * p = ( QGC_POINTER_QFontDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QFontDialog ), hbqt_gcFuncs() );
p->ph = pObj;
p->func = release_QFontDialog;
p->func = hbqt_gcRelease_QFontDialog;
new( & p->pq ) QPointer< QFontDialog >( ( QFontDialog * ) pObj );
HB_TRACE( HB_TR_DEBUG, ( " new_QFontDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) );
return( p );

Some files were not shown because too many files have changed in this diff Show More