diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 9665aefad8..6149fd5898 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/hbqt/generator/hbqtgen.prg b/harbour/contrib/hbqt/generator/hbqtgen.prg index d25e10b39f..e4af9b4617 100644 --- a/harbour/contrib/hbqt/generator/hbqtgen.prg +++ b/harbour/contrib/hbqt/generator/hbqtgen.prg @@ -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 diff --git a/harbour/contrib/hbqt/hbqt_garbage.h b/harbour/contrib/hbqt/hbqt_garbage.h index e6499c308a..104ae3215d 100644 --- a/harbour/contrib/hbqt/hbqt_garbage.h +++ b/harbour/contrib/hbqt/hbqt_garbage.h @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp b/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp index 1f17da9f88..a5ba516fd1 100644 --- a/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp +++ b/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp @@ -96,7 +96,7 @@ -QT_G_FUNC( release_QAbstractItemModel ) +QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp b/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp index 266497c93c..6f5e819d01 100644 --- a/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp +++ b/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp @@ -76,7 +76,7 @@ * ~QAbstractListModel () */ -QT_G_FUNC( release_QAbstractListModel ) +QT_G_FUNC( hbqt_gcRelease_QAbstractListModel ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp b/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp index d353c3eb6e..14f28f7514 100644 --- a/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp +++ b/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp @@ -76,7 +76,7 @@ * ~QAbstractTableModel () */ -QT_G_FUNC( release_QAbstractTableModel ) +QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtcore/QBitArray.cpp b/harbour/contrib/hbqt/qtcore/QBitArray.cpp index 6fd4dcaf75..a03d6068ba 100644 --- a/harbour/contrib/hbqt/qtcore/QBitArray.cpp +++ b/harbour/contrib/hbqt/qtcore/QBitArray.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QByteArray.cpp b/harbour/contrib/hbqt/qtcore/QByteArray.cpp index b1bbf251ad..b1faaa7aa6 100644 --- a/harbour/contrib/hbqt/qtcore/QByteArray.cpp +++ b/harbour/contrib/hbqt/qtcore/QByteArray.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp b/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp index 72e4b2e3ec..7fe24b64a7 100644 --- a/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp +++ b/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp @@ -81,7 +81,7 @@ * ~QCoreApplication () */ -QT_G_FUNC( release_QCoreApplication ) +QT_G_FUNC( hbqt_gcRelease_QCoreApplication ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtcore/QDataStream.cpp b/harbour/contrib/hbqt/qtcore/QDataStream.cpp index b3e28ce4be..8117e3d74b 100644 --- a/harbour/contrib/hbqt/qtcore/QDataStream.cpp +++ b/harbour/contrib/hbqt/qtcore/QDataStream.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QDate.cpp b/harbour/contrib/hbqt/qtcore/QDate.cpp index 316a70b472..1f3b9efc0e 100644 --- a/harbour/contrib/hbqt/qtcore/QDate.cpp +++ b/harbour/contrib/hbqt/qtcore/QDate.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QDateTime.cpp b/harbour/contrib/hbqt/qtcore/QDateTime.cpp index 009b617ae2..75351fdb4e 100644 --- a/harbour/contrib/hbqt/qtcore/QDateTime.cpp +++ b/harbour/contrib/hbqt/qtcore/QDateTime.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QDir.cpp b/harbour/contrib/hbqt/qtcore/QDir.cpp index f966a5ee36..1e6b316b3a 100644 --- a/harbour/contrib/hbqt/qtcore/QDir.cpp +++ b/harbour/contrib/hbqt/qtcore/QDir.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QEvent.cpp b/harbour/contrib/hbqt/qtcore/QEvent.cpp index 18e6b26cc5..6f74846fcc 100644 --- a/harbour/contrib/hbqt/qtcore/QEvent.cpp +++ b/harbour/contrib/hbqt/qtcore/QEvent.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QEventLoop.cpp b/harbour/contrib/hbqt/qtcore/QEventLoop.cpp index db4484f03a..9f0ca13fac 100644 --- a/harbour/contrib/hbqt/qtcore/QEventLoop.cpp +++ b/harbour/contrib/hbqt/qtcore/QEventLoop.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QFile.cpp b/harbour/contrib/hbqt/qtcore/QFile.cpp index 4f8041f343..eca362dc24 100644 --- a/harbour/contrib/hbqt/qtcore/QFile.cpp +++ b/harbour/contrib/hbqt/qtcore/QFile.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QFileInfo.cpp b/harbour/contrib/hbqt/qtcore/QFileInfo.cpp index bb35fce1b2..86ef586001 100644 --- a/harbour/contrib/hbqt/qtcore/QFileInfo.cpp +++ b/harbour/contrib/hbqt/qtcore/QFileInfo.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QIODevice.cpp b/harbour/contrib/hbqt/qtcore/QIODevice.cpp index c2c324a13e..b224103362 100644 --- a/harbour/contrib/hbqt/qtcore/QIODevice.cpp +++ b/harbour/contrib/hbqt/qtcore/QIODevice.cpp @@ -82,7 +82,7 @@ * virtual ~QIODevice () */ -QT_G_FUNC( release_QIODevice ) +QT_G_FUNC( hbqt_gcRelease_QIODevice ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp b/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp index d807568436..79b6da5906 100644 --- a/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp +++ b/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QLatin1String.cpp b/harbour/contrib/hbqt/qtcore/QLatin1String.cpp index b02040be9e..21d5ceccd7 100644 --- a/harbour/contrib/hbqt/qtcore/QLatin1String.cpp +++ b/harbour/contrib/hbqt/qtcore/QLatin1String.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QLine.cpp b/harbour/contrib/hbqt/qtcore/QLine.cpp index 4fc8d1793d..769423712d 100644 --- a/harbour/contrib/hbqt/qtcore/QLine.cpp +++ b/harbour/contrib/hbqt/qtcore/QLine.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QLineF.cpp b/harbour/contrib/hbqt/qtcore/QLineF.cpp index 82b757a8db..40bf12c2df 100644 --- a/harbour/contrib/hbqt/qtcore/QLineF.cpp +++ b/harbour/contrib/hbqt/qtcore/QLineF.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QList.cpp b/harbour/contrib/hbqt/qtcore/QList.cpp index 85b6b45127..53b18f4ff9 100644 --- a/harbour/contrib/hbqt/qtcore/QList.cpp +++ b/harbour/contrib/hbqt/qtcore/QList.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QLocale.cpp b/harbour/contrib/hbqt/qtcore/QLocale.cpp index 29ff98211e..c6c4159320 100644 --- a/harbour/contrib/hbqt/qtcore/QLocale.cpp +++ b/harbour/contrib/hbqt/qtcore/QLocale.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QMimeData.cpp b/harbour/contrib/hbqt/qtcore/QMimeData.cpp index e401fe8356..ac2c72f46f 100644 --- a/harbour/contrib/hbqt/qtcore/QMimeData.cpp +++ b/harbour/contrib/hbqt/qtcore/QMimeData.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QModelIndex.cpp b/harbour/contrib/hbqt/qtcore/QModelIndex.cpp index e59f14ebf0..d2b3ab7398 100644 --- a/harbour/contrib/hbqt/qtcore/QModelIndex.cpp +++ b/harbour/contrib/hbqt/qtcore/QModelIndex.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QObject.cpp b/harbour/contrib/hbqt/qtcore/QObject.cpp index b743410bcb..ee729b75c0 100644 --- a/harbour/contrib/hbqt/qtcore/QObject.cpp +++ b/harbour/contrib/hbqt/qtcore/QObject.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QPoint.cpp b/harbour/contrib/hbqt/qtcore/QPoint.cpp index bf32dfa326..19d6282ce8 100644 --- a/harbour/contrib/hbqt/qtcore/QPoint.cpp +++ b/harbour/contrib/hbqt/qtcore/QPoint.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QPointF.cpp b/harbour/contrib/hbqt/qtcore/QPointF.cpp index 3a6ab7a0d1..8574255b97 100644 --- a/harbour/contrib/hbqt/qtcore/QPointF.cpp +++ b/harbour/contrib/hbqt/qtcore/QPointF.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QProcess.cpp b/harbour/contrib/hbqt/qtcore/QProcess.cpp index 202c949973..7f76553bef 100644 --- a/harbour/contrib/hbqt/qtcore/QProcess.cpp +++ b/harbour/contrib/hbqt/qtcore/QProcess.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QRect.cpp b/harbour/contrib/hbqt/qtcore/QRect.cpp index 95b19dde0a..92ca27895c 100644 --- a/harbour/contrib/hbqt/qtcore/QRect.cpp +++ b/harbour/contrib/hbqt/qtcore/QRect.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QRectF.cpp b/harbour/contrib/hbqt/qtcore/QRectF.cpp index d52a0cf954..bd86a2da9e 100644 --- a/harbour/contrib/hbqt/qtcore/QRectF.cpp +++ b/harbour/contrib/hbqt/qtcore/QRectF.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QRegExp.cpp b/harbour/contrib/hbqt/qtcore/QRegExp.cpp index c7b499c423..cfc61b3889 100644 --- a/harbour/contrib/hbqt/qtcore/QRegExp.cpp +++ b/harbour/contrib/hbqt/qtcore/QRegExp.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QResource.cpp b/harbour/contrib/hbqt/qtcore/QResource.cpp index 5db32368ab..7b206f0d7b 100644 --- a/harbour/contrib/hbqt/qtcore/QResource.cpp +++ b/harbour/contrib/hbqt/qtcore/QResource.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp b/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp index 2090477976..233cd5fb69 100644 --- a/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp +++ b/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QSize.cpp b/harbour/contrib/hbqt/qtcore/QSize.cpp index 763ebb3da3..cb6308f251 100644 --- a/harbour/contrib/hbqt/qtcore/QSize.cpp +++ b/harbour/contrib/hbqt/qtcore/QSize.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QSizeF.cpp b/harbour/contrib/hbqt/qtcore/QSizeF.cpp index 56fb459b26..1b9206db7a 100644 --- a/harbour/contrib/hbqt/qtcore/QSizeF.cpp +++ b/harbour/contrib/hbqt/qtcore/QSizeF.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QStringList.cpp b/harbour/contrib/hbqt/qtcore/QStringList.cpp index 685437f910..ffdd6769fc 100644 --- a/harbour/contrib/hbqt/qtcore/QStringList.cpp +++ b/harbour/contrib/hbqt/qtcore/QStringList.cpp @@ -96,22 +96,22 @@ * QStringList ( const QList & 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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp b/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp index 90de458ca6..4130ab1fd3 100644 --- a/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QTextCodec.cpp b/harbour/contrib/hbqt/qtcore/QTextCodec.cpp index 4701ced842..cbfb42e009 100644 --- a/harbour/contrib/hbqt/qtcore/QTextCodec.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextCodec.cpp @@ -95,7 +95,7 @@ * */ -QT_G_FUNC( release_QTextCodec ) +QT_G_FUNC( hbqt_gcRelease_QTextCodec ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp b/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp index 018e070717..f851dab792 100644 --- a/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp b/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp index 53b35c9b31..2c6d26df64 100644 --- a/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QTextStream.cpp b/harbour/contrib/hbqt/qtcore/QTextStream.cpp index 69f35e7ed3..5d37a743cd 100644 --- a/harbour/contrib/hbqt/qtcore/QTextStream.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextStream.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QThread.cpp b/harbour/contrib/hbqt/qtcore/QThread.cpp index f2709bc451..4a88c2b8c2 100644 --- a/harbour/contrib/hbqt/qtcore/QThread.cpp +++ b/harbour/contrib/hbqt/qtcore/QThread.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QTime.cpp b/harbour/contrib/hbqt/qtcore/QTime.cpp index b7a9429acd..2c25f3f579 100644 --- a/harbour/contrib/hbqt/qtcore/QTime.cpp +++ b/harbour/contrib/hbqt/qtcore/QTime.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QTimer.cpp b/harbour/contrib/hbqt/qtcore/QTimer.cpp index 5a1cf2b074..c901767443 100644 --- a/harbour/contrib/hbqt/qtcore/QTimer.cpp +++ b/harbour/contrib/hbqt/qtcore/QTimer.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QTranslator.cpp b/harbour/contrib/hbqt/qtcore/QTranslator.cpp index 4db7f85da3..c27fd7ad55 100644 --- a/harbour/contrib/hbqt/qtcore/QTranslator.cpp +++ b/harbour/contrib/hbqt/qtcore/QTranslator.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QUiLoader.cpp b/harbour/contrib/hbqt/qtcore/QUiLoader.cpp index ce938f6e8b..0945b02a19 100644 --- a/harbour/contrib/hbqt/qtcore/QUiLoader.cpp +++ b/harbour/contrib/hbqt/qtcore/QUiLoader.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtcore/QUrl.cpp b/harbour/contrib/hbqt/qtcore/QUrl.cpp index 43d84dc681..23ab2c9e2f 100644 --- a/harbour/contrib/hbqt/qtcore/QUrl.cpp +++ b/harbour/contrib/hbqt/qtcore/QUrl.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtcore/QVariant.cpp b/harbour/contrib/hbqt/qtcore/QVariant.cpp index ab90360532..368f42a62b 100644 --- a/harbour/contrib/hbqt/qtcore/QVariant.cpp +++ b/harbour/contrib/hbqt/qtcore/QVariant.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp b/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp index eaabea6844..457f5e927c 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp @@ -76,7 +76,7 @@ * ~QAbstractButton () */ -QT_G_FUNC( release_QAbstractButton ) +QT_G_FUNC( hbqt_gcRelease_QAbstractButton ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp b/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp index a0a13c891d..662088edbb 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp @@ -79,7 +79,7 @@ * virtual ~QAbstractItemDelegate () */ -QT_G_FUNC( release_QAbstractItemDelegate ) +QT_G_FUNC( hbqt_gcRelease_QAbstractItemDelegate ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp b/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp index 49d230420a..dcd2548bd1 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp @@ -86,7 +86,7 @@ * ~QAbstractItemView () */ -QT_G_FUNC( release_QAbstractItemView ) +QT_G_FUNC( hbqt_gcRelease_QAbstractItemView ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp b/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp index 389b33e63c..ba6347cdee 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp b/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp index 1eb6dc0f85..8f2fad2f4e 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp @@ -75,7 +75,7 @@ * ~QAbstractProxyModel () */ -QT_G_FUNC( release_QAbstractProxyModel ) +QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp b/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp index b72a2f1f7a..09f498b00a 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp @@ -76,7 +76,7 @@ * ~QAbstractScrollArea () */ -QT_G_FUNC( release_QAbstractScrollArea ) +QT_G_FUNC( hbqt_gcRelease_QAbstractScrollArea ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp b/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp index b14b2de565..130a7a29ed 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp @@ -80,7 +80,7 @@ * ~QAbstractSlider () */ -QT_G_FUNC( release_QAbstractSlider ) +QT_G_FUNC( hbqt_gcRelease_QAbstractSlider ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp index 0368bba329..d26d012993 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp @@ -83,7 +83,7 @@ * ~QAbstractSpinBox () */ -QT_G_FUNC( release_QAbstractSpinBox ) +QT_G_FUNC( hbqt_gcRelease_QAbstractSpinBox ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp b/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp index abc2d10460..8baad558e2 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp @@ -75,7 +75,7 @@ * */ -QT_G_FUNC( release_QAbstractTextDocumentLayout ) +QT_G_FUNC( hbqt_gcRelease_QAbstractTextDocumentLayout ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QAction.cpp b/harbour/contrib/hbqt/qtgui/QAction.cpp index db9758e91c..ebf7f26d3e 100644 --- a/harbour/contrib/hbqt/qtgui/QAction.cpp +++ b/harbour/contrib/hbqt/qtgui/QAction.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QActionGroup.cpp b/harbour/contrib/hbqt/qtgui/QActionGroup.cpp index 2aa641cbf8..96021bf7b9 100644 --- a/harbour/contrib/hbqt/qtgui/QActionGroup.cpp +++ b/harbour/contrib/hbqt/qtgui/QActionGroup.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QApplication.cpp b/harbour/contrib/hbqt/qtgui/QApplication.cpp index 6e8ecd4df2..2ed7fe3527 100644 --- a/harbour/contrib/hbqt/qtgui/QApplication.cpp +++ b/harbour/contrib/hbqt/qtgui/QApplication.cpp @@ -91,10 +91,10 @@ #include #include -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 ) ); } diff --git a/harbour/contrib/hbqt/qtgui/QBitmap.cpp b/harbour/contrib/hbqt/qtgui/QBitmap.cpp index 054d0724d4..6c5bf5f7a0 100644 --- a/harbour/contrib/hbqt/qtgui/QBitmap.cpp +++ b/harbour/contrib/hbqt/qtgui/QBitmap.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp b/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp index 08324b2130..c23b475f79 100644 --- a/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QBrush.cpp b/harbour/contrib/hbqt/qtgui/QBrush.cpp index dd20479e2b..bd01ea1c66 100644 --- a/harbour/contrib/hbqt/qtgui/QBrush.cpp +++ b/harbour/contrib/hbqt/qtgui/QBrush.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp b/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp index 5999f8b0e3..d7d30ba533 100644 --- a/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp +++ b/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp b/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp index eb5cdc9201..4c908da0ce 100644 --- a/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QCheckBox.cpp b/harbour/contrib/hbqt/qtgui/QCheckBox.cpp index 616b4af24f..404cd84665 100644 --- a/harbour/contrib/hbqt/qtgui/QCheckBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QCheckBox.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QClipboard.cpp b/harbour/contrib/hbqt/qtgui/QClipboard.cpp index 3cc3b2945c..25229e27d3 100644 --- a/harbour/contrib/hbqt/qtgui/QClipboard.cpp +++ b/harbour/contrib/hbqt/qtgui/QClipboard.cpp @@ -81,7 +81,7 @@ * */ -QT_G_FUNC( release_QClipboard ) +QT_G_FUNC( hbqt_gcRelease_QClipboard ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QColor.cpp b/harbour/contrib/hbqt/qtgui/QColor.cpp index d4806d9121..e3605338e0 100644 --- a/harbour/contrib/hbqt/qtgui/QColor.cpp +++ b/harbour/contrib/hbqt/qtgui/QColor.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QColorDialog.cpp b/harbour/contrib/hbqt/qtgui/QColorDialog.cpp index fdd634f3a9..43209cbe10 100644 --- a/harbour/contrib/hbqt/qtgui/QColorDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QColorDialog.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QComboBox.cpp b/harbour/contrib/hbqt/qtgui/QComboBox.cpp index 9741fa8c04..c5e7c92c2d 100644 --- a/harbour/contrib/hbqt/qtgui/QComboBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QComboBox.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp b/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp index cf7478a95b..ecb081ecb9 100644 --- a/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp b/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp index f99046abef..db17c23908 100644 --- a/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp +++ b/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QCompleter.cpp b/harbour/contrib/hbqt/qtgui/QCompleter.cpp index 61c9c7f756..ea63435fc8 100644 --- a/harbour/contrib/hbqt/qtgui/QCompleter.cpp +++ b/harbour/contrib/hbqt/qtgui/QCompleter.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp b/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp index f5aec9fb2e..e67b2538b8 100644 --- a/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp b/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp index 68f22126db..678fac07e5 100644 --- a/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QCursor.cpp b/harbour/contrib/hbqt/qtgui/QCursor.cpp index 5633cb64c1..babde29590 100644 --- a/harbour/contrib/hbqt/qtgui/QCursor.cpp +++ b/harbour/contrib/hbqt/qtgui/QCursor.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QDateEdit.cpp b/harbour/contrib/hbqt/qtgui/QDateEdit.cpp index a873a9e4fd..f73625575b 100644 --- a/harbour/contrib/hbqt/qtgui/QDateEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QDateEdit.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp b/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp index 74f6146572..55eee9f4d7 100644 --- a/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp b/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp index 6c90f7f24c..a057a07c15 100644 --- a/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDial.cpp b/harbour/contrib/hbqt/qtgui/QDial.cpp index 0cb63a4e1f..9d7905f8f7 100644 --- a/harbour/contrib/hbqt/qtgui/QDial.cpp +++ b/harbour/contrib/hbqt/qtgui/QDial.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDialog.cpp b/harbour/contrib/hbqt/qtgui/QDialog.cpp index cde4144220..5755ff9339 100644 --- a/harbour/contrib/hbqt/qtgui/QDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QDialog.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDirModel.cpp b/harbour/contrib/hbqt/qtgui/QDirModel.cpp index 80c9653a8d..bf5ee38160 100644 --- a/harbour/contrib/hbqt/qtgui/QDirModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QDirModel.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDockWidget.cpp b/harbour/contrib/hbqt/qtgui/QDockWidget.cpp index fab51ccc8e..b5db99fdd5 100644 --- a/harbour/contrib/hbqt/qtgui/QDockWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QDockWidget.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp index 67d5349b60..bb27e32fe6 100644 --- a/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp b/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp index 6b7dcceca3..faf583e09c 100644 --- a/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp b/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp index e3bac119a9..bbf5956452 100644 --- a/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp @@ -75,7 +75,7 @@ * QDragLeaveEvent () */ -QT_G_FUNC( release_QDragLeaveEvent ) +QT_G_FUNC( hbqt_gcRelease_QDragLeaveEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp b/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp index 6dc62508e2..539b9434c0 100644 --- a/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp @@ -76,7 +76,7 @@ * ~QDragMoveEvent () */ -QT_G_FUNC( release_QDragMoveEvent ) +QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QDropEvent.cpp b/harbour/contrib/hbqt/qtgui/QDropEvent.cpp index 84a61c565a..24ae3161c1 100644 --- a/harbour/contrib/hbqt/qtgui/QDropEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDropEvent.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp b/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp index 2dac9c24b9..fe58a9b606 100644 --- a/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp +++ b/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QFileDialog.cpp b/harbour/contrib/hbqt/qtgui/QFileDialog.cpp index 2b3e8ec67c..e5003323fc 100644 --- a/harbour/contrib/hbqt/qtgui/QFileDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QFileDialog.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp b/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp index 9385e16085..f9492a2e2a 100644 --- a/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp +++ b/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp b/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp index da482c8f7b..bec216e691 100644 --- a/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp b/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp index e54ae66797..9f15cc16c0 100644 --- a/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp b/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp index 269ba7b101..1c501d73c2 100644 --- a/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QFont.cpp b/harbour/contrib/hbqt/qtgui/QFont.cpp index 82c6ebc00b..c8efcce604 100644 --- a/harbour/contrib/hbqt/qtgui/QFont.cpp +++ b/harbour/contrib/hbqt/qtgui/QFont.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp b/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp index 156e3badaa..c9577a8bd0 100644 --- a/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp b/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp index f9729c8f63..b4ed950a2c 100644 --- a/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp @@ -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 ); } diff --git a/harbour/contrib/hbqt/qtgui/QFontDialog.cpp b/harbour/contrib/hbqt/qtgui/QFontDialog.cpp index b1a7495ee1..08e79c84e6 100644 --- a/harbour/contrib/hbqt/qtgui/QFontDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontDialog.cpp @@ -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 ); diff --git a/harbour/contrib/hbqt/qtgui/QFontInfo.cpp b/harbour/contrib/hbqt/qtgui/QFontInfo.cpp index 41447b2b4a..4e84cfd36c 100644 --- a/harbour/contrib/hbqt/qtgui/QFontInfo.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontInfo.cpp @@ -77,22 +77,22 @@ * ~QFontInfo () */ -QT_G_FUNC( release_QFontInfo ) +QT_G_FUNC( hbqt_gcRelease_QFontInfo ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QFontInfo p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QFontInfo ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontInfo p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontInfo ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QFontInfo * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QFontInfo Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFontInfo Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFontInfo Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFontInfo Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QFontInfo( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QFontInfo; + p->func = hbqt_gcRelease_QFontInfo; HB_TRACE( HB_TR_DEBUG, ( " new_QFontInfo %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp b/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp index 8a17b91ce3..c48f982f5c 100644 --- a/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp @@ -78,22 +78,22 @@ * ~QFontMetrics () */ -QT_G_FUNC( release_QFontMetrics ) +QT_G_FUNC( hbqt_gcRelease_QFontMetrics ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QFontMetrics p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QFontMetrics ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontMetrics p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontMetrics ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QFontMetrics * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QFontMetrics Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFontMetrics Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFontMetrics Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFontMetrics Object Already deleted!" ) ); } } @@ -102,7 +102,7 @@ void * hbqt_gcAllocate_QFontMetrics( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QFontMetrics; + p->func = hbqt_gcRelease_QFontMetrics; HB_TRACE( HB_TR_DEBUG, ( " new_QFontMetrics %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp b/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp index 397464c90f..f572fa0d36 100644 --- a/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp @@ -79,22 +79,22 @@ * ~QFontMetricsF () */ -QT_G_FUNC( release_QFontMetricsF ) +QT_G_FUNC( hbqt_gcRelease_QFontMetricsF ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QFontMetricsF p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QFontMetricsF ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontMetricsF p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFontMetricsF ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QFontMetricsF * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QFontMetricsF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QFontMetricsF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFontMetricsF Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFontMetricsF Object Already deleted!" ) ); } } @@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QFontMetricsF( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QFontMetricsF; + p->func = hbqt_gcRelease_QFontMetricsF; HB_TRACE( HB_TR_DEBUG, ( " new_QFontMetricsF %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QFormLayout.cpp b/harbour/contrib/hbqt/qtgui/QFormLayout.cpp index f072704b9f..caaff1d870 100644 --- a/harbour/contrib/hbqt/qtgui/QFormLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QFormLayout.cpp @@ -89,12 +89,12 @@ typedef struct QPointer< QFormLayout > pq; } QGC_POINTER_QFormLayout; -QT_G_FUNC( release_QFormLayout ) +QT_G_FUNC( hbqt_gcRelease_QFormLayout ) { QGC_POINTER_QFormLayout * p = ( QGC_POINTER_QFormLayout * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QFormLayout p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QFormLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFormLayout p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFormLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -114,16 +114,16 @@ QT_G_FUNC( release_QFormLayout ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QFormLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFormLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QFormLayout Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFormLayout Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFormLayout Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFormLayout Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QFormLayout( void * pObj ) QGC_POINTER_QFormLayout * p = ( QGC_POINTER_QFormLayout * ) hb_gcAllocate( sizeof( QGC_POINTER_QFormLayout ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QFormLayout; + p->func = hbqt_gcRelease_QFormLayout; new( & p->pq ) QPointer< QFormLayout >( ( QFormLayout * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QFormLayout %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QFrame.cpp b/harbour/contrib/hbqt/qtgui/QFrame.cpp index b52e9ddb49..33602c8c98 100644 --- a/harbour/contrib/hbqt/qtgui/QFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QFrame.cpp @@ -89,12 +89,12 @@ typedef struct QPointer< QFrame > pq; } QGC_POINTER_QFrame; -QT_G_FUNC( release_QFrame ) +QT_G_FUNC( hbqt_gcRelease_QFrame ) { QGC_POINTER_QFrame * p = ( QGC_POINTER_QFrame * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QFrame p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QFrame ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFrame p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFrame ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -114,16 +114,16 @@ QT_G_FUNC( release_QFrame ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QFrame Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFrame Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFrame Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFrame Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QFrame( void * pObj ) QGC_POINTER_QFrame * p = ( QGC_POINTER_QFrame * ) hb_gcAllocate( sizeof( QGC_POINTER_QFrame ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QFrame; + p->func = hbqt_gcRelease_QFrame; new( & p->pq ) QPointer< QFrame >( ( QFrame * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QFrame %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QGradient.cpp b/harbour/contrib/hbqt/qtgui/QGradient.cpp index 983a9bf477..7fd705f3ad 100644 --- a/harbour/contrib/hbqt/qtgui/QGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QGradient.cpp @@ -81,7 +81,7 @@ * */ -QT_G_FUNC( release_QGradient ) +QT_G_FUNC( hbqt_gcRelease_QGradient ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QGridLayout.cpp b/harbour/contrib/hbqt/qtgui/QGridLayout.cpp index aaaa326d62..10e1d92886 100644 --- a/harbour/contrib/hbqt/qtgui/QGridLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QGridLayout.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QGridLayout > pq; } QGC_POINTER_QGridLayout; -QT_G_FUNC( release_QGridLayout ) +QT_G_FUNC( hbqt_gcRelease_QGridLayout ) { QGC_POINTER_QGridLayout * p = ( QGC_POINTER_QGridLayout * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QGridLayout p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QGridLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QGridLayout p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QGridLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QGridLayout ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QGridLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QGridLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QGridLayout Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QGridLayout Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QGridLayout Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QGridLayout Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QGridLayout( void * pObj ) QGC_POINTER_QGridLayout * p = ( QGC_POINTER_QGridLayout * ) hb_gcAllocate( sizeof( QGC_POINTER_QGridLayout ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QGridLayout; + p->func = hbqt_gcRelease_QGridLayout; new( & p->pq ) QPointer< QGridLayout >( ( QGridLayout * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QGridLayout %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QGroupBox.cpp b/harbour/contrib/hbqt/qtgui/QGroupBox.cpp index b0d5393057..7ed25b3562 100644 --- a/harbour/contrib/hbqt/qtgui/QGroupBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QGroupBox.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QGroupBox > pq; } QGC_POINTER_QGroupBox; -QT_G_FUNC( release_QGroupBox ) +QT_G_FUNC( hbqt_gcRelease_QGroupBox ) { QGC_POINTER_QGroupBox * p = ( QGC_POINTER_QGroupBox * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QGroupBox p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QGroupBox ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QGroupBox p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QGroupBox ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QGroupBox ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QGroupBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QGroupBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QGroupBox Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QGroupBox Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QGroupBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QGroupBox Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QGroupBox( void * pObj ) QGC_POINTER_QGroupBox * p = ( QGC_POINTER_QGroupBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QGroupBox ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QGroupBox; + p->func = hbqt_gcRelease_QGroupBox; new( & p->pq ) QPointer< QGroupBox >( ( QGroupBox * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QGroupBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp b/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp index 17eaecf42d..b2748d1851 100644 --- a/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QHBoxLayout > pq; } QGC_POINTER_QHBoxLayout; -QT_G_FUNC( release_QHBoxLayout ) +QT_G_FUNC( hbqt_gcRelease_QHBoxLayout ) { QGC_POINTER_QHBoxLayout * p = ( QGC_POINTER_QHBoxLayout * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QHBoxLayout p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QHBoxLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHBoxLayout p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHBoxLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QHBoxLayout ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QHBoxLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHBoxLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QHBoxLayout Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QHBoxLayout Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QHBoxLayout Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QHBoxLayout Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QHBoxLayout( void * pObj ) QGC_POINTER_QHBoxLayout * p = ( QGC_POINTER_QHBoxLayout * ) hb_gcAllocate( sizeof( QGC_POINTER_QHBoxLayout ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QHBoxLayout; + p->func = hbqt_gcRelease_QHBoxLayout; new( & p->pq ) QPointer< QHBoxLayout >( ( QHBoxLayout * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QHBoxLayout %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QHeaderView.cpp b/harbour/contrib/hbqt/qtgui/QHeaderView.cpp index a1a49c2fc5..bf947a2275 100644 --- a/harbour/contrib/hbqt/qtgui/QHeaderView.cpp +++ b/harbour/contrib/hbqt/qtgui/QHeaderView.cpp @@ -87,12 +87,12 @@ typedef struct QPointer< QHeaderView > pq; } QGC_POINTER_QHeaderView; -QT_G_FUNC( release_QHeaderView ) +QT_G_FUNC( hbqt_gcRelease_QHeaderView ) { QGC_POINTER_QHeaderView * p = ( QGC_POINTER_QHeaderView * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QHeaderView p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QHeaderView ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHeaderView p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHeaderView ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -112,16 +112,16 @@ QT_G_FUNC( release_QHeaderView ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QHeaderView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHeaderView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QHeaderView Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QHeaderView Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QHeaderView Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QHeaderView Object Already deleted!" ) ); } } @@ -130,7 +130,7 @@ void * hbqt_gcAllocate_QHeaderView( void * pObj ) QGC_POINTER_QHeaderView * p = ( QGC_POINTER_QHeaderView * ) hb_gcAllocate( sizeof( QGC_POINTER_QHeaderView ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QHeaderView; + p->func = hbqt_gcRelease_QHeaderView; new( & p->pq ) QPointer< QHeaderView >( ( QHeaderView * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QHeaderView %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp b/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp index c4f1e06ddb..7e33b05aa9 100644 --- a/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp @@ -75,7 +75,7 @@ * */ -QT_G_FUNC( release_QHelpEvent ) +QT_G_FUNC( hbqt_gcRelease_QHelpEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QIcon.cpp b/harbour/contrib/hbqt/qtgui/QIcon.cpp index 3a0d192f1d..a3386428ce 100644 --- a/harbour/contrib/hbqt/qtgui/QIcon.cpp +++ b/harbour/contrib/hbqt/qtgui/QIcon.cpp @@ -95,22 +95,22 @@ * ~QIcon () */ -QT_G_FUNC( release_QIcon ) +QT_G_FUNC( hbqt_gcRelease_QIcon ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QIcon p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QIcon ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QIcon p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QIcon ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QIcon * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QIcon Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QIcon Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QIcon Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QIcon Object Already deleted!" ) ); } } @@ -119,7 +119,7 @@ void * hbqt_gcAllocate_QIcon( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QIcon; + p->func = hbqt_gcRelease_QIcon; HB_TRACE( HB_TR_DEBUG, ( " new_QIcon %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QImage.cpp b/harbour/contrib/hbqt/qtgui/QImage.cpp index f8010e23f9..2a016b69c0 100644 --- a/harbour/contrib/hbqt/qtgui/QImage.cpp +++ b/harbour/contrib/hbqt/qtgui/QImage.cpp @@ -107,22 +107,22 @@ * ~QImage () */ -QT_G_FUNC( release_QImage ) +QT_G_FUNC( hbqt_gcRelease_QImage ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QImage p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QImage ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QImage p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QImage ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QImage * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QImage Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QImage Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QImage Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QImage Object Already deleted!" ) ); } } @@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QImage( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QImage; + p->func = hbqt_gcRelease_QImage; HB_TRACE( HB_TR_DEBUG, ( " new_QImage %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QImageReader.cpp b/harbour/contrib/hbqt/qtgui/QImageReader.cpp index 053848230a..5f2e38afb4 100644 --- a/harbour/contrib/hbqt/qtgui/QImageReader.cpp +++ b/harbour/contrib/hbqt/qtgui/QImageReader.cpp @@ -92,22 +92,22 @@ * ~QImageReader () */ -QT_G_FUNC( release_QImageReader ) +QT_G_FUNC( hbqt_gcRelease_QImageReader ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QImageReader p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QImageReader ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QImageReader p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QImageReader ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QImageReader * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QImageReader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QImageReader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QImageReader Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QImageReader Object Already deleted!" ) ); } } @@ -116,7 +116,7 @@ void * hbqt_gcAllocate_QImageReader( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QImageReader; + p->func = hbqt_gcRelease_QImageReader; HB_TRACE( HB_TR_DEBUG, ( " new_QImageReader %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QImageWriter.cpp b/harbour/contrib/hbqt/qtgui/QImageWriter.cpp index 048c23bf62..998d3c22a0 100644 --- a/harbour/contrib/hbqt/qtgui/QImageWriter.cpp +++ b/harbour/contrib/hbqt/qtgui/QImageWriter.cpp @@ -91,22 +91,22 @@ * ~QImageWriter () */ -QT_G_FUNC( release_QImageWriter ) +QT_G_FUNC( hbqt_gcRelease_QImageWriter ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QImageWriter p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QImageWriter ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QImageWriter p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QImageWriter ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QImageWriter * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QImageWriter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QImageWriter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QImageWriter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QImageWriter Object Already deleted!" ) ); } } @@ -115,7 +115,7 @@ void * hbqt_gcAllocate_QImageWriter( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QImageWriter; + p->func = hbqt_gcRelease_QImageWriter; HB_TRACE( HB_TR_DEBUG, ( " new_QImageWriter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QInputContext.cpp b/harbour/contrib/hbqt/qtgui/QInputContext.cpp index 05b5aa1be0..fa3bf3f89d 100644 --- a/harbour/contrib/hbqt/qtgui/QInputContext.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputContext.cpp @@ -92,7 +92,7 @@ * virtual ~QInputContext () */ -QT_G_FUNC( release_QInputContext ) +QT_G_FUNC( hbqt_gcRelease_QInputContext ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QInputDialog.cpp b/harbour/contrib/hbqt/qtgui/QInputDialog.cpp index d88eb1f99d..2f4d14eaec 100644 --- a/harbour/contrib/hbqt/qtgui/QInputDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputDialog.cpp @@ -89,12 +89,12 @@ typedef struct QPointer< QInputDialog > pq; } QGC_POINTER_QInputDialog; -QT_G_FUNC( release_QInputDialog ) +QT_G_FUNC( hbqt_gcRelease_QInputDialog ) { QGC_POINTER_QInputDialog * p = ( QGC_POINTER_QInputDialog * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QInputDialog p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QInputDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputDialog p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -114,16 +114,16 @@ QT_G_FUNC( release_QInputDialog ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QInputDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QInputDialog Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QInputDialog Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QInputDialog Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QInputDialog Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QInputDialog( void * pObj ) QGC_POINTER_QInputDialog * p = ( QGC_POINTER_QInputDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QInputDialog ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QInputDialog; + p->func = hbqt_gcRelease_QInputDialog; new( & p->pq ) QPointer< QInputDialog >( ( QInputDialog * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QInputDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QInputEvent.cpp b/harbour/contrib/hbqt/qtgui/QInputEvent.cpp index 80ab95421b..fefc61bc4a 100644 --- a/harbour/contrib/hbqt/qtgui/QInputEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputEvent.cpp @@ -76,22 +76,22 @@ * */ -QT_G_FUNC( release_QInputEvent ) +QT_G_FUNC( hbqt_gcRelease_QInputEvent ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QInputEvent p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QInputEvent ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputEvent p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputEvent ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QInputEvent * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QInputEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QInputEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QInputEvent Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QInputEvent Object Already deleted!" ) ); } } @@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QInputEvent( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QInputEvent; + p->func = hbqt_gcRelease_QInputEvent; HB_TRACE( HB_TR_DEBUG, ( " new_QInputEvent %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp b/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp index 3e672ad626..61a7aa2b48 100644 --- a/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp @@ -89,22 +89,22 @@ * QInputMethodEvent ( const QInputMethodEvent & other ) */ -QT_G_FUNC( release_QInputMethodEvent ) +QT_G_FUNC( hbqt_gcRelease_QInputMethodEvent ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QInputMethodEvent p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QInputMethodEvent ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputMethodEvent p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QInputMethodEvent ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QInputMethodEvent * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QInputMethodEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QInputMethodEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QInputMethodEvent Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QInputMethodEvent Object Already deleted!" ) ); } } @@ -113,7 +113,7 @@ void * hbqt_gcAllocate_QInputMethodEvent( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QInputMethodEvent; + p->func = hbqt_gcRelease_QInputMethodEvent; HB_TRACE( HB_TR_DEBUG, ( " new_QInputMethodEvent %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QItemSelection.cpp b/harbour/contrib/hbqt/qtgui/QItemSelection.cpp index 5a4516b2a3..3894ce74c4 100644 --- a/harbour/contrib/hbqt/qtgui/QItemSelection.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemSelection.cpp @@ -75,22 +75,22 @@ * QItemSelection ( const QModelIndex & topLeft, const QModelIndex & bottomRight ) */ -QT_G_FUNC( release_QItemSelection ) +QT_G_FUNC( hbqt_gcRelease_QItemSelection ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QItemSelection p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QItemSelection ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QItemSelection p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QItemSelection ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QItemSelection * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QItemSelection Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QItemSelection Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QItemSelection Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QItemSelection Object Already deleted!" ) ); } } @@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QItemSelection( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QItemSelection; + p->func = hbqt_gcRelease_QItemSelection; HB_TRACE( HB_TR_DEBUG, ( " new_QItemSelection %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp b/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp index e664485bee..bdff39964b 100644 --- a/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp @@ -88,12 +88,12 @@ typedef struct QPointer< QItemSelectionModel > pq; } QGC_POINTER_QItemSelectionModel; -QT_G_FUNC( release_QItemSelectionModel ) +QT_G_FUNC( hbqt_gcRelease_QItemSelectionModel ) { QGC_POINTER_QItemSelectionModel * p = ( QGC_POINTER_QItemSelectionModel * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QItemSelectionModel p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QItemSelectionModel ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QItemSelectionModel p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QItemSelectionModel ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -113,16 +113,16 @@ QT_G_FUNC( release_QItemSelectionModel ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QItemSelectionModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QItemSelectionModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QItemSelectionModel Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QItemSelectionModel Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QItemSelectionModel Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QItemSelectionModel Object Already deleted!" ) ); } } @@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QItemSelectionModel( void * pObj ) QGC_POINTER_QItemSelectionModel * p = ( QGC_POINTER_QItemSelectionModel * ) hb_gcAllocate( sizeof( QGC_POINTER_QItemSelectionModel ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QItemSelectionModel; + p->func = hbqt_gcRelease_QItemSelectionModel; new( & p->pq ) QPointer< QItemSelectionModel >( ( QItemSelectionModel * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QItemSelectionModel %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp b/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp index 7c74002dba..c9cfd7ae94 100644 --- a/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp @@ -76,7 +76,7 @@ * ~QKeyEvent () */ -QT_G_FUNC( release_QKeyEvent ) +QT_G_FUNC( hbqt_gcRelease_QKeyEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QKeySequence.cpp b/harbour/contrib/hbqt/qtgui/QKeySequence.cpp index 329c911f02..05d17584d2 100644 --- a/harbour/contrib/hbqt/qtgui/QKeySequence.cpp +++ b/harbour/contrib/hbqt/qtgui/QKeySequence.cpp @@ -95,22 +95,22 @@ * ~QKeySequence () */ -QT_G_FUNC( release_QKeySequence ) +QT_G_FUNC( hbqt_gcRelease_QKeySequence ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QKeySequence p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QKeySequence ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QKeySequence p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QKeySequence ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QKeySequence * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QKeySequence Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QKeySequence Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QKeySequence Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QKeySequence Object Already deleted!" ) ); } } @@ -119,7 +119,7 @@ void * hbqt_gcAllocate_QKeySequence( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QKeySequence; + p->func = hbqt_gcRelease_QKeySequence; HB_TRACE( HB_TR_DEBUG, ( " new_QKeySequence %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp b/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp index 664bd9b7e1..fb3f0862d2 100644 --- a/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp +++ b/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp @@ -89,12 +89,12 @@ typedef struct QPointer< QLCDNumber > pq; } QGC_POINTER_QLCDNumber; -QT_G_FUNC( release_QLCDNumber ) +QT_G_FUNC( hbqt_gcRelease_QLCDNumber ) { QGC_POINTER_QLCDNumber * p = ( QGC_POINTER_QLCDNumber * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QLCDNumber p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QLCDNumber ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLCDNumber p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLCDNumber ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -114,16 +114,16 @@ QT_G_FUNC( release_QLCDNumber ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QLCDNumber Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLCDNumber Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QLCDNumber Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QLCDNumber Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLCDNumber Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLCDNumber Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QLCDNumber( void * pObj ) QGC_POINTER_QLCDNumber * p = ( QGC_POINTER_QLCDNumber * ) hb_gcAllocate( sizeof( QGC_POINTER_QLCDNumber ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QLCDNumber; + p->func = hbqt_gcRelease_QLCDNumber; new( & p->pq ) QPointer< QLCDNumber >( ( QLCDNumber * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QLCDNumber %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QLabel.cpp b/harbour/contrib/hbqt/qtgui/QLabel.cpp index ed5fbe9e53..4d91f78afd 100644 --- a/harbour/contrib/hbqt/qtgui/QLabel.cpp +++ b/harbour/contrib/hbqt/qtgui/QLabel.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QLabel > pq; } QGC_POINTER_QLabel; -QT_G_FUNC( release_QLabel ) +QT_G_FUNC( hbqt_gcRelease_QLabel ) { QGC_POINTER_QLabel * p = ( QGC_POINTER_QLabel * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QLabel p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QLabel ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLabel p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLabel ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QLabel ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QLabel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLabel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QLabel Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QLabel Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLabel Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLabel Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QLabel( void * pObj ) QGC_POINTER_QLabel * p = ( QGC_POINTER_QLabel * ) hb_gcAllocate( sizeof( QGC_POINTER_QLabel ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QLabel; + p->func = hbqt_gcRelease_QLabel; new( & p->pq ) QPointer< QLabel >( ( QLabel * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QLabel %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QLayout.cpp b/harbour/contrib/hbqt/qtgui/QLayout.cpp index b050b98323..0e442eea0a 100644 --- a/harbour/contrib/hbqt/qtgui/QLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QLayout.cpp @@ -80,7 +80,7 @@ * QLayout () */ -QT_G_FUNC( release_QLayout ) +QT_G_FUNC( hbqt_gcRelease_QLayout ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp b/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp index 73cbb665c6..971308a121 100644 --- a/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp @@ -76,7 +76,7 @@ * virtual ~QLayoutItem () */ -QT_G_FUNC( release_QLayoutItem ) +QT_G_FUNC( hbqt_gcRelease_QLayoutItem ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QLineEdit.cpp b/harbour/contrib/hbqt/qtgui/QLineEdit.cpp index 2f77d6af5a..5f5433d057 100644 --- a/harbour/contrib/hbqt/qtgui/QLineEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QLineEdit.cpp @@ -88,12 +88,12 @@ typedef struct QPointer< QLineEdit > pq; } QGC_POINTER_QLineEdit; -QT_G_FUNC( release_QLineEdit ) +QT_G_FUNC( hbqt_gcRelease_QLineEdit ) { QGC_POINTER_QLineEdit * p = ( QGC_POINTER_QLineEdit * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QLineEdit p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QLineEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLineEdit p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLineEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -113,16 +113,16 @@ QT_G_FUNC( release_QLineEdit ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QLineEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLineEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QLineEdit Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QLineEdit Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLineEdit Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLineEdit Object Already deleted!" ) ); } } @@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QLineEdit( void * pObj ) QGC_POINTER_QLineEdit * p = ( QGC_POINTER_QLineEdit * ) hb_gcAllocate( sizeof( QGC_POINTER_QLineEdit ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QLineEdit; + p->func = hbqt_gcRelease_QLineEdit; new( & p->pq ) QPointer< QLineEdit >( ( QLineEdit * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QLineEdit %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp b/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp index cd661e1a23..45ca7b5ca8 100644 --- a/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp @@ -83,22 +83,22 @@ * QLinearGradient ( qreal x1, qreal y1, qreal x2, qreal y2 ) */ -QT_G_FUNC( release_QLinearGradient ) +QT_G_FUNC( hbqt_gcRelease_QLinearGradient ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QLinearGradient p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QLinearGradient ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLinearGradient p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QLinearGradient ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QLinearGradient * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QLinearGradient Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QLinearGradient Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QLinearGradient Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QLinearGradient Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QLinearGradient( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QLinearGradient; + p->func = hbqt_gcRelease_QLinearGradient; HB_TRACE( HB_TR_DEBUG, ( " new_QLinearGradient %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QListView.cpp b/harbour/contrib/hbqt/qtgui/QListView.cpp index d913473806..392dc91e5e 100644 --- a/harbour/contrib/hbqt/qtgui/QListView.cpp +++ b/harbour/contrib/hbqt/qtgui/QListView.cpp @@ -91,12 +91,12 @@ typedef struct QPointer< QListView > pq; } QGC_POINTER_QListView; -QT_G_FUNC( release_QListView ) +QT_G_FUNC( hbqt_gcRelease_QListView ) { QGC_POINTER_QListView * p = ( QGC_POINTER_QListView * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QListView p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QListView ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListView p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListView ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -116,16 +116,16 @@ QT_G_FUNC( release_QListView ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QListView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QListView Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QListView Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QListView Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QListView Object Already deleted!" ) ); } } @@ -134,7 +134,7 @@ void * hbqt_gcAllocate_QListView( void * pObj ) QGC_POINTER_QListView * p = ( QGC_POINTER_QListView * ) hb_gcAllocate( sizeof( QGC_POINTER_QListView ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QListView; + p->func = hbqt_gcRelease_QListView; new( & p->pq ) QPointer< QListView >( ( QListView * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QListView %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QListWidget.cpp b/harbour/contrib/hbqt/qtgui/QListWidget.cpp index 22e8853b99..9498fbe497 100644 --- a/harbour/contrib/hbqt/qtgui/QListWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QListWidget.cpp @@ -93,12 +93,12 @@ typedef struct QPointer< QListWidget > pq; } QGC_POINTER_QListWidget; -QT_G_FUNC( release_QListWidget ) +QT_G_FUNC( hbqt_gcRelease_QListWidget ) { QGC_POINTER_QListWidget * p = ( QGC_POINTER_QListWidget * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QListWidget p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QListWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListWidget p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -118,16 +118,16 @@ QT_G_FUNC( release_QListWidget ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QListWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QListWidget Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QListWidget Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QListWidget Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QListWidget Object Already deleted!" ) ); } } @@ -136,7 +136,7 @@ void * hbqt_gcAllocate_QListWidget( void * pObj ) QGC_POINTER_QListWidget * p = ( QGC_POINTER_QListWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QListWidget ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QListWidget; + p->func = hbqt_gcRelease_QListWidget; new( & p->pq ) QPointer< QListWidget >( ( QListWidget * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QListWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp index 816692b6a3..2dcc2a9d90 100644 --- a/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp @@ -83,22 +83,22 @@ * virtual ~QListWidgetItem () */ -QT_G_FUNC( release_QListWidgetItem ) +QT_G_FUNC( hbqt_gcRelease_QListWidgetItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QListWidgetItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QListWidgetItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListWidgetItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QListWidgetItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QListWidgetItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QListWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QListWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QListWidgetItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QListWidgetItem Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QListWidgetItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QListWidgetItem; + p->func = hbqt_gcRelease_QListWidgetItem; HB_TRACE( HB_TR_DEBUG, ( " new_QListWidgetItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QMainWindow.cpp b/harbour/contrib/hbqt/qtgui/QMainWindow.cpp index 3aaf840050..46bcc8ef4e 100644 --- a/harbour/contrib/hbqt/qtgui/QMainWindow.cpp +++ b/harbour/contrib/hbqt/qtgui/QMainWindow.cpp @@ -97,12 +97,12 @@ typedef struct QPointer< QMainWindow > pq; } QGC_POINTER_QMainWindow; -QT_G_FUNC( release_QMainWindow ) +QT_G_FUNC( hbqt_gcRelease_QMainWindow ) { QGC_POINTER_QMainWindow * p = ( QGC_POINTER_QMainWindow * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMainWindow p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QMainWindow ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMainWindow p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMainWindow ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -122,16 +122,16 @@ QT_G_FUNC( release_QMainWindow ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QMainWindow Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMainWindow Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QMainWindow Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QMainWindow Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMainWindow Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMainWindow Object Already deleted!" ) ); } } @@ -140,7 +140,7 @@ void * hbqt_gcAllocate_QMainWindow( void * pObj ) QGC_POINTER_QMainWindow * p = ( QGC_POINTER_QMainWindow * ) hb_gcAllocate( sizeof( QGC_POINTER_QMainWindow ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMainWindow; + p->func = hbqt_gcRelease_QMainWindow; new( & p->pq ) QPointer< QMainWindow >( ( QMainWindow * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QMainWindow %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QMatrix.cpp b/harbour/contrib/hbqt/qtgui/QMatrix.cpp index af926bb95c..2d50ab55ad 100644 --- a/harbour/contrib/hbqt/qtgui/QMatrix.cpp +++ b/harbour/contrib/hbqt/qtgui/QMatrix.cpp @@ -77,22 +77,22 @@ * QMatrix ( const QMatrix & matrix ) */ -QT_G_FUNC( release_QMatrix ) +QT_G_FUNC( hbqt_gcRelease_QMatrix ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMatrix p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QMatrix ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMatrix p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMatrix ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QMatrix * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QMatrix Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QMatrix Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMatrix Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMatrix Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QMatrix( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMatrix; + p->func = hbqt_gcRelease_QMatrix; HB_TRACE( HB_TR_DEBUG, ( " new_QMatrix %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QMenu.cpp b/harbour/contrib/hbqt/qtgui/QMenu.cpp index 1d7e81d11a..863328ad70 100644 --- a/harbour/contrib/hbqt/qtgui/QMenu.cpp +++ b/harbour/contrib/hbqt/qtgui/QMenu.cpp @@ -94,12 +94,12 @@ typedef struct QPointer< QMenu > pq; } QGC_POINTER_QMenu; -QT_G_FUNC( release_QMenu ) +QT_G_FUNC( hbqt_gcRelease_QMenu ) { QGC_POINTER_QMenu * p = ( QGC_POINTER_QMenu * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMenu p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QMenu ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMenu p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMenu ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -119,16 +119,16 @@ QT_G_FUNC( release_QMenu ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QMenu Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMenu Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QMenu Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QMenu Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMenu Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMenu Object Already deleted!" ) ); } } @@ -137,7 +137,7 @@ void * hbqt_gcAllocate_QMenu( void * pObj ) QGC_POINTER_QMenu * p = ( QGC_POINTER_QMenu * ) hb_gcAllocate( sizeof( QGC_POINTER_QMenu ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMenu; + p->func = hbqt_gcRelease_QMenu; new( & p->pq ) QPointer< QMenu >( ( QMenu * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QMenu %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QMenuBar.cpp b/harbour/contrib/hbqt/qtgui/QMenuBar.cpp index 0fcf3c7678..029b5e155e 100644 --- a/harbour/contrib/hbqt/qtgui/QMenuBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QMenuBar.cpp @@ -97,12 +97,12 @@ typedef struct QPointer< QMenuBar > pq; } QGC_POINTER_QMenuBar; -QT_G_FUNC( release_QMenuBar ) +QT_G_FUNC( hbqt_gcRelease_QMenuBar ) { QGC_POINTER_QMenuBar * p = ( QGC_POINTER_QMenuBar * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMenuBar p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QMenuBar ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMenuBar p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMenuBar ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -122,16 +122,16 @@ QT_G_FUNC( release_QMenuBar ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QMenuBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMenuBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QMenuBar Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QMenuBar Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMenuBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMenuBar Object Already deleted!" ) ); } } @@ -140,7 +140,7 @@ void * hbqt_gcAllocate_QMenuBar( void * pObj ) QGC_POINTER_QMenuBar * p = ( QGC_POINTER_QMenuBar * ) hb_gcAllocate( sizeof( QGC_POINTER_QMenuBar ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMenuBar; + p->func = hbqt_gcRelease_QMenuBar; new( & p->pq ) QPointer< QMenuBar >( ( QMenuBar * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QMenuBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QMessageBox.cpp b/harbour/contrib/hbqt/qtgui/QMessageBox.cpp index 00c7c6a577..a25fe85c8e 100644 --- a/harbour/contrib/hbqt/qtgui/QMessageBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QMessageBox.cpp @@ -100,12 +100,12 @@ typedef struct QPointer< QMessageBox > pq; } QGC_POINTER_QMessageBox; -QT_G_FUNC( release_QMessageBox ) +QT_G_FUNC( hbqt_gcRelease_QMessageBox ) { QGC_POINTER_QMessageBox * p = ( QGC_POINTER_QMessageBox * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMessageBox p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QMessageBox ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMessageBox p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMessageBox ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -125,16 +125,16 @@ QT_G_FUNC( release_QMessageBox ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QMessageBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMessageBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QMessageBox Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QMessageBox Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMessageBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMessageBox Object Already deleted!" ) ); } } @@ -143,7 +143,7 @@ void * hbqt_gcAllocate_QMessageBox( void * pObj ) QGC_POINTER_QMessageBox * p = ( QGC_POINTER_QMessageBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QMessageBox ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMessageBox; + p->func = hbqt_gcRelease_QMessageBox; new( & p->pq ) QPointer< QMessageBox >( ( QMessageBox * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QMessageBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp b/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp index 3dc859260c..1a909f20c3 100644 --- a/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp @@ -77,22 +77,22 @@ * ~QMouseEvent () */ -QT_G_FUNC( release_QMouseEvent ) +QT_G_FUNC( hbqt_gcRelease_QMouseEvent ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMouseEvent p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QMouseEvent ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMouseEvent p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMouseEvent ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QMouseEvent * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QMouseEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QMouseEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMouseEvent Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMouseEvent Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QMouseEvent( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMouseEvent; + p->func = hbqt_gcRelease_QMouseEvent; HB_TRACE( HB_TR_DEBUG, ( " new_QMouseEvent %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp b/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp index 85ccd4a03a..8363c5f5ed 100644 --- a/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp @@ -76,7 +76,7 @@ * ~QMoveEvent () */ -QT_G_FUNC( release_QMoveEvent ) +QT_G_FUNC( hbqt_gcRelease_QMoveEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QMovie.cpp b/harbour/contrib/hbqt/qtgui/QMovie.cpp index 3df96156d9..245a00639f 100644 --- a/harbour/contrib/hbqt/qtgui/QMovie.cpp +++ b/harbour/contrib/hbqt/qtgui/QMovie.cpp @@ -91,12 +91,12 @@ typedef struct QPointer< QMovie > pq; } QGC_POINTER_QMovie; -QT_G_FUNC( release_QMovie ) +QT_G_FUNC( hbqt_gcRelease_QMovie ) { QGC_POINTER_QMovie * p = ( QGC_POINTER_QMovie * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QMovie p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QMovie ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMovie p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMovie ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -116,16 +116,16 @@ QT_G_FUNC( release_QMovie ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QMovie Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QMovie Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QMovie Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QMovie Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QMovie Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QMovie Object Already deleted!" ) ); } } @@ -134,7 +134,7 @@ void * hbqt_gcAllocate_QMovie( void * pObj ) QGC_POINTER_QMovie * p = ( QGC_POINTER_QMovie * ) hb_gcAllocate( sizeof( QGC_POINTER_QMovie ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QMovie; + p->func = hbqt_gcRelease_QMovie; new( & p->pq ) QPointer< QMovie >( ( QMovie * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QMovie %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp b/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp index 6b8cde0a70..45be99c02e 100644 --- a/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp @@ -88,12 +88,12 @@ typedef struct QPointer< QPageSetupDialog > pq; } QGC_POINTER_QPageSetupDialog; -QT_G_FUNC( release_QPageSetupDialog ) +QT_G_FUNC( hbqt_gcRelease_QPageSetupDialog ) { QGC_POINTER_QPageSetupDialog * p = ( QGC_POINTER_QPageSetupDialog * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPageSetupDialog p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QPageSetupDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPageSetupDialog p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPageSetupDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -113,16 +113,16 @@ QT_G_FUNC( release_QPageSetupDialog ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QPageSetupDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPageSetupDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QPageSetupDialog Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QPageSetupDialog Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPageSetupDialog Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPageSetupDialog Object Already deleted!" ) ); } } @@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QPageSetupDialog( void * pObj ) QGC_POINTER_QPageSetupDialog * p = ( QGC_POINTER_QPageSetupDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QPageSetupDialog ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPageSetupDialog; + p->func = hbqt_gcRelease_QPageSetupDialog; new( & p->pq ) QPointer< QPageSetupDialog >( ( QPageSetupDialog * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QPageSetupDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp b/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp index c54b0f145f..db1cf01baa 100644 --- a/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp +++ b/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp @@ -78,7 +78,7 @@ * virtual ~QPaintDevice () */ -QT_G_FUNC( release_QPaintDevice ) +QT_G_FUNC( hbqt_gcRelease_QPaintDevice ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp b/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp index 76a3eea133..7019607fee 100644 --- a/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp @@ -76,22 +76,22 @@ * QPaintEvent ( const QRect & paintRect ) */ -QT_G_FUNC( release_QPaintEvent ) +QT_G_FUNC( hbqt_gcRelease_QPaintEvent ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPaintEvent p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPaintEvent ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPaintEvent p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPaintEvent ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPaintEvent * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPaintEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPaintEvent Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPaintEvent Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPaintEvent Object Already deleted!" ) ); } } @@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QPaintEvent( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPaintEvent; + p->func = hbqt_gcRelease_QPaintEvent; HB_TRACE( HB_TR_DEBUG, ( " new_QPaintEvent %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPainter.cpp b/harbour/contrib/hbqt/qtgui/QPainter.cpp index 45b5bfd19e..eedfc41b7a 100644 --- a/harbour/contrib/hbqt/qtgui/QPainter.cpp +++ b/harbour/contrib/hbqt/qtgui/QPainter.cpp @@ -96,22 +96,22 @@ * ~QPainter () */ -QT_G_FUNC( release_QPainter ) +QT_G_FUNC( hbqt_gcRelease_QPainter ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPainter p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPainter ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPainter p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPainter ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPainter * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPainter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPainter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPainter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPainter Object Already deleted!" ) ); } } @@ -120,7 +120,7 @@ void * hbqt_gcAllocate_QPainter( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPainter; + p->func = hbqt_gcRelease_QPainter; HB_TRACE( HB_TR_DEBUG, ( " new_QPainter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPainterPath.cpp b/harbour/contrib/hbqt/qtgui/QPainterPath.cpp index 1bc22dac9c..69a4c2b838 100644 --- a/harbour/contrib/hbqt/qtgui/QPainterPath.cpp +++ b/harbour/contrib/hbqt/qtgui/QPainterPath.cpp @@ -97,22 +97,22 @@ * ~QPainterPath () */ -QT_G_FUNC( release_QPainterPath ) +QT_G_FUNC( hbqt_gcRelease_QPainterPath ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPainterPath p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPainterPath ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPainterPath p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPainterPath ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPainterPath * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPainterPath Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPainterPath Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPainterPath Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPainterPath Object Already deleted!" ) ); } } @@ -121,7 +121,7 @@ void * hbqt_gcAllocate_QPainterPath( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPainterPath; + p->func = hbqt_gcRelease_QPainterPath; HB_TRACE( HB_TR_DEBUG, ( " new_QPainterPath %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPalette.cpp b/harbour/contrib/hbqt/qtgui/QPalette.cpp index de279c25a2..ca5ba7ab7c 100644 --- a/harbour/contrib/hbqt/qtgui/QPalette.cpp +++ b/harbour/contrib/hbqt/qtgui/QPalette.cpp @@ -86,22 +86,22 @@ * ~QPalette () */ -QT_G_FUNC( release_QPalette ) +QT_G_FUNC( hbqt_gcRelease_QPalette ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPalette p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPalette ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPalette p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPalette ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPalette * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPalette Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPalette Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPalette Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPalette Object Already deleted!" ) ); } } @@ -110,7 +110,7 @@ void * hbqt_gcAllocate_QPalette( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPalette; + p->func = hbqt_gcRelease_QPalette; HB_TRACE( HB_TR_DEBUG, ( " new_QPalette %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPen.cpp b/harbour/contrib/hbqt/qtgui/QPen.cpp index 102b9de725..ef7c076599 100644 --- a/harbour/contrib/hbqt/qtgui/QPen.cpp +++ b/harbour/contrib/hbqt/qtgui/QPen.cpp @@ -90,22 +90,22 @@ * ~QPen () */ -QT_G_FUNC( release_QPen ) +QT_G_FUNC( hbqt_gcRelease_QPen ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPen p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPen ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPen p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPen ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPen * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPen Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPen Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPen Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPen Object Already deleted!" ) ); } } @@ -114,7 +114,7 @@ void * hbqt_gcAllocate_QPen( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPen; + p->func = hbqt_gcRelease_QPen; HB_TRACE( HB_TR_DEBUG, ( " new_QPen %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPicture.cpp b/harbour/contrib/hbqt/qtgui/QPicture.cpp index 4b9be9d13e..db1e3e2fa6 100644 --- a/harbour/contrib/hbqt/qtgui/QPicture.cpp +++ b/harbour/contrib/hbqt/qtgui/QPicture.cpp @@ -77,22 +77,22 @@ * ~QPicture () */ -QT_G_FUNC( release_QPicture ) +QT_G_FUNC( hbqt_gcRelease_QPicture ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPicture p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPicture ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPicture p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPicture ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPicture * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPicture Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPicture Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPicture Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPicture Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QPicture( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPicture; + p->func = hbqt_gcRelease_QPicture; HB_TRACE( HB_TR_DEBUG, ( " new_QPicture %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPixmap.cpp b/harbour/contrib/hbqt/qtgui/QPixmap.cpp index d180b74101..fbce8607f6 100644 --- a/harbour/contrib/hbqt/qtgui/QPixmap.cpp +++ b/harbour/contrib/hbqt/qtgui/QPixmap.cpp @@ -86,22 +86,22 @@ * ~QPixmap () */ -QT_G_FUNC( release_QPixmap ) +QT_G_FUNC( hbqt_gcRelease_QPixmap ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPixmap p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPixmap ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPixmap p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPixmap ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPixmap * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPixmap Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPixmap Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPixmap Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPixmap Object Already deleted!" ) ); } } @@ -110,7 +110,7 @@ void * hbqt_gcAllocate_QPixmap( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPixmap; + p->func = hbqt_gcRelease_QPixmap; HB_TRACE( HB_TR_DEBUG, ( " new_QPixmap %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp b/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp index d6d848a4e5..3e82713ec3 100644 --- a/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp @@ -103,12 +103,12 @@ typedef struct QPointer< QPlainTextEdit > pq; } QGC_POINTER_QPlainTextEdit; -QT_G_FUNC( release_QPlainTextEdit ) +QT_G_FUNC( hbqt_gcRelease_QPlainTextEdit ) { QGC_POINTER_QPlainTextEdit * p = ( QGC_POINTER_QPlainTextEdit * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPlainTextEdit p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QPlainTextEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPlainTextEdit p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPlainTextEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -128,16 +128,16 @@ QT_G_FUNC( release_QPlainTextEdit ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QPlainTextEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPlainTextEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QPlainTextEdit Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QPlainTextEdit Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPlainTextEdit Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPlainTextEdit Object Already deleted!" ) ); } } @@ -146,7 +146,7 @@ void * hbqt_gcAllocate_QPlainTextEdit( void * pObj ) QGC_POINTER_QPlainTextEdit * p = ( QGC_POINTER_QPlainTextEdit * ) hb_gcAllocate( sizeof( QGC_POINTER_QPlainTextEdit ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPlainTextEdit; + p->func = hbqt_gcRelease_QPlainTextEdit; new( & p->pq ) QPointer< QPlainTextEdit >( ( QPlainTextEdit * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QPlainTextEdit %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QPolygon.cpp b/harbour/contrib/hbqt/qtgui/QPolygon.cpp index fc3f653412..e1d06920bb 100644 --- a/harbour/contrib/hbqt/qtgui/QPolygon.cpp +++ b/harbour/contrib/hbqt/qtgui/QPolygon.cpp @@ -79,22 +79,22 @@ * ~QPolygon () */ -QT_G_FUNC( release_QPolygon ) +QT_G_FUNC( hbqt_gcRelease_QPolygon ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPolygon p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPolygon ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPolygon p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPolygon ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPolygon * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPolygon Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPolygon Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPolygon Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPolygon Object Already deleted!" ) ); } } @@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QPolygon( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPolygon; + p->func = hbqt_gcRelease_QPolygon; HB_TRACE( HB_TR_DEBUG, ( " new_QPolygon %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPolygonF.cpp b/harbour/contrib/hbqt/qtgui/QPolygonF.cpp index 282f63aa15..9069347317 100644 --- a/harbour/contrib/hbqt/qtgui/QPolygonF.cpp +++ b/harbour/contrib/hbqt/qtgui/QPolygonF.cpp @@ -80,22 +80,22 @@ * ~QPolygonF () */ -QT_G_FUNC( release_QPolygonF ) +QT_G_FUNC( hbqt_gcRelease_QPolygonF ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPolygonF p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPolygonF ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPolygonF p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPolygonF ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPolygonF * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPolygonF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPolygonF Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPolygonF Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPolygonF Object Already deleted!" ) ); } } @@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QPolygonF( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPolygonF; + p->func = hbqt_gcRelease_QPolygonF; HB_TRACE( HB_TR_DEBUG, ( " new_QPolygonF %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp b/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp index 9e824c4ffd..ccfcd1b07b 100644 --- a/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp @@ -89,12 +89,12 @@ typedef struct QPointer< QPrintDialog > pq; } QGC_POINTER_QPrintDialog; -QT_G_FUNC( release_QPrintDialog ) +QT_G_FUNC( hbqt_gcRelease_QPrintDialog ) { QGC_POINTER_QPrintDialog * p = ( QGC_POINTER_QPrintDialog * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPrintDialog p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QPrintDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrintDialog p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrintDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -114,16 +114,16 @@ QT_G_FUNC( release_QPrintDialog ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QPrintDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrintDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QPrintDialog Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QPrintDialog Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPrintDialog Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPrintDialog Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QPrintDialog( void * pObj ) QGC_POINTER_QPrintDialog * p = ( QGC_POINTER_QPrintDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QPrintDialog ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPrintDialog; + p->func = hbqt_gcRelease_QPrintDialog; new( & p->pq ) QPointer< QPrintDialog >( ( QPrintDialog * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QPrintDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp b/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp index 9fc2579760..5d683e0a3c 100644 --- a/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp @@ -79,7 +79,7 @@ * virtual ~QPrintEngine () */ -QT_G_FUNC( release_QPrintEngine ) +QT_G_FUNC( hbqt_gcRelease_QPrintEngine ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp b/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp index 77fb10f582..df695ef294 100644 --- a/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QPrintPreviewDialog > pq; } QGC_POINTER_QPrintPreviewDialog; -QT_G_FUNC( release_QPrintPreviewDialog ) +QT_G_FUNC( hbqt_gcRelease_QPrintPreviewDialog ) { QGC_POINTER_QPrintPreviewDialog * p = ( QGC_POINTER_QPrintPreviewDialog * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPrintPreviewDialog p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QPrintPreviewDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrintPreviewDialog p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrintPreviewDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QPrintPreviewDialog ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QPrintPreviewDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrintPreviewDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QPrintPreviewDialog Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QPrintPreviewDialog Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPrintPreviewDialog Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPrintPreviewDialog Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QPrintPreviewDialog( void * pObj ) QGC_POINTER_QPrintPreviewDialog * p = ( QGC_POINTER_QPrintPreviewDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QPrintPreviewDialog ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPrintPreviewDialog; + p->func = hbqt_gcRelease_QPrintPreviewDialog; new( & p->pq ) QPointer< QPrintPreviewDialog >( ( QPrintPreviewDialog * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QPrintPreviewDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QPrinter.cpp b/harbour/contrib/hbqt/qtgui/QPrinter.cpp index 690ccbe469..2d0481a3c5 100644 --- a/harbour/contrib/hbqt/qtgui/QPrinter.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrinter.cpp @@ -108,22 +108,22 @@ * ~QPrinter () */ -QT_G_FUNC( release_QPrinter ) +QT_G_FUNC( hbqt_gcRelease_QPrinter ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPrinter p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QPrinter ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrinter p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPrinter ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QPrinter * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QPrinter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QPrinter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPrinter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPrinter Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QPrinter( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPrinter; + p->func = hbqt_gcRelease_QPrinter; HB_TRACE( HB_TR_DEBUG, ( " new_QPrinter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QProgressBar.cpp b/harbour/contrib/hbqt/qtgui/QProgressBar.cpp index 06eb5ff716..3fd448816b 100644 --- a/harbour/contrib/hbqt/qtgui/QProgressBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QProgressBar.cpp @@ -86,12 +86,12 @@ typedef struct QPointer< QProgressBar > pq; } QGC_POINTER_QProgressBar; -QT_G_FUNC( release_QProgressBar ) +QT_G_FUNC( hbqt_gcRelease_QProgressBar ) { QGC_POINTER_QProgressBar * p = ( QGC_POINTER_QProgressBar * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QProgressBar p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QProgressBar ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProgressBar p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProgressBar ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -111,16 +111,16 @@ QT_G_FUNC( release_QProgressBar ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QProgressBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProgressBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QProgressBar Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QProgressBar Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QProgressBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QProgressBar Object Already deleted!" ) ); } } @@ -129,7 +129,7 @@ void * hbqt_gcAllocate_QProgressBar( void * pObj ) QGC_POINTER_QProgressBar * p = ( QGC_POINTER_QProgressBar * ) hb_gcAllocate( sizeof( QGC_POINTER_QProgressBar ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QProgressBar; + p->func = hbqt_gcRelease_QProgressBar; new( & p->pq ) QPointer< QProgressBar >( ( QProgressBar * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QProgressBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp b/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp index b8ecc7a55c..880b98b3c3 100644 --- a/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QProgressDialog > pq; } QGC_POINTER_QProgressDialog; -QT_G_FUNC( release_QProgressDialog ) +QT_G_FUNC( hbqt_gcRelease_QProgressDialog ) { QGC_POINTER_QProgressDialog * p = ( QGC_POINTER_QProgressDialog * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QProgressDialog p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QProgressDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProgressDialog p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProgressDialog ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QProgressDialog ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QProgressDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QProgressDialog Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QProgressDialog Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QProgressDialog Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QProgressDialog Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QProgressDialog Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QProgressDialog( void * pObj ) QGC_POINTER_QProgressDialog * p = ( QGC_POINTER_QProgressDialog * ) hb_gcAllocate( sizeof( QGC_POINTER_QProgressDialog ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QProgressDialog; + p->func = hbqt_gcRelease_QProgressDialog; new( & p->pq ) QPointer< QProgressDialog >( ( QProgressDialog * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QProgressDialog %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QPushButton.cpp b/harbour/contrib/hbqt/qtgui/QPushButton.cpp index 62fae4f3ec..18c2784ef3 100644 --- a/harbour/contrib/hbqt/qtgui/QPushButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QPushButton.cpp @@ -85,12 +85,12 @@ typedef struct QPointer< QPushButton > pq; } QGC_POINTER_QPushButton; -QT_G_FUNC( release_QPushButton ) +QT_G_FUNC( hbqt_gcRelease_QPushButton ) { QGC_POINTER_QPushButton * p = ( QGC_POINTER_QPushButton * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QPushButton p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QPushButton ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPushButton p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPushButton ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -110,16 +110,16 @@ QT_G_FUNC( release_QPushButton ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QPushButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QPushButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QPushButton Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QPushButton Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QPushButton Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QPushButton Object Already deleted!" ) ); } } @@ -128,7 +128,7 @@ void * hbqt_gcAllocate_QPushButton( void * pObj ) QGC_POINTER_QPushButton * p = ( QGC_POINTER_QPushButton * ) hb_gcAllocate( sizeof( QGC_POINTER_QPushButton ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QPushButton; + p->func = hbqt_gcRelease_QPushButton; new( & p->pq ) QPointer< QPushButton >( ( QPushButton * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QPushButton %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp b/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp index 82a09d4d30..7ba85894d1 100644 --- a/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp @@ -85,22 +85,22 @@ * QRadialGradient ( qreal cx, qreal cy, qreal radius ) */ -QT_G_FUNC( release_QRadialGradient ) +QT_G_FUNC( hbqt_gcRelease_QRadialGradient ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QRadialGradient p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QRadialGradient ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRadialGradient p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRadialGradient ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QRadialGradient * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QRadialGradient Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QRadialGradient Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QRadialGradient Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QRadialGradient Object Already deleted!" ) ); } } @@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QRadialGradient( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QRadialGradient; + p->func = hbqt_gcRelease_QRadialGradient; HB_TRACE( HB_TR_DEBUG, ( " new_QRadialGradient %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QRadioButton.cpp b/harbour/contrib/hbqt/qtgui/QRadioButton.cpp index 7b232b8c34..601270801c 100644 --- a/harbour/contrib/hbqt/qtgui/QRadioButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QRadioButton.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QRadioButton > pq; } QGC_POINTER_QRadioButton; -QT_G_FUNC( release_QRadioButton ) +QT_G_FUNC( hbqt_gcRelease_QRadioButton ) { QGC_POINTER_QRadioButton * p = ( QGC_POINTER_QRadioButton * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QRadioButton p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QRadioButton ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRadioButton p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRadioButton ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QRadioButton ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QRadioButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRadioButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QRadioButton Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QRadioButton Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QRadioButton Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QRadioButton Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QRadioButton( void * pObj ) QGC_POINTER_QRadioButton * p = ( QGC_POINTER_QRadioButton * ) hb_gcAllocate( sizeof( QGC_POINTER_QRadioButton ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QRadioButton; + p->func = hbqt_gcRelease_QRadioButton; new( & p->pq ) QPointer< QRadioButton >( ( QRadioButton * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QRadioButton %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QRegion.cpp b/harbour/contrib/hbqt/qtgui/QRegion.cpp index 24d26414a6..dd8108eeb9 100644 --- a/harbour/contrib/hbqt/qtgui/QRegion.cpp +++ b/harbour/contrib/hbqt/qtgui/QRegion.cpp @@ -98,22 +98,22 @@ * ~QRegion () */ -QT_G_FUNC( release_QRegion ) +QT_G_FUNC( hbqt_gcRelease_QRegion ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QRegion p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QRegion ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRegion p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QRegion ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QRegion * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QRegion Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QRegion Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QRegion Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QRegion Object Already deleted!" ) ); } } @@ -122,7 +122,7 @@ void * hbqt_gcAllocate_QRegion( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QRegion; + p->func = hbqt_gcRelease_QRegion; HB_TRACE( HB_TR_DEBUG, ( " new_QRegion %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp b/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp index 56fa0375d9..45afeac8d3 100644 --- a/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp @@ -75,7 +75,7 @@ * QResizeEvent ( const QSize & size, const QSize & oldSize ) */ -QT_G_FUNC( release_QResizeEvent ) +QT_G_FUNC( hbqt_gcRelease_QResizeEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QScrollArea.cpp b/harbour/contrib/hbqt/qtgui/QScrollArea.cpp index eeca063bdf..07414e66c2 100644 --- a/harbour/contrib/hbqt/qtgui/QScrollArea.cpp +++ b/harbour/contrib/hbqt/qtgui/QScrollArea.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QScrollArea > pq; } QGC_POINTER_QScrollArea; -QT_G_FUNC( release_QScrollArea ) +QT_G_FUNC( hbqt_gcRelease_QScrollArea ) { QGC_POINTER_QScrollArea * p = ( QGC_POINTER_QScrollArea * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QScrollArea p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QScrollArea ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QScrollArea p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QScrollArea ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QScrollArea ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QScrollArea Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QScrollArea Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QScrollArea Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QScrollArea Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QScrollArea Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QScrollArea Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QScrollArea( void * pObj ) QGC_POINTER_QScrollArea * p = ( QGC_POINTER_QScrollArea * ) hb_gcAllocate( sizeof( QGC_POINTER_QScrollArea ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QScrollArea; + p->func = hbqt_gcRelease_QScrollArea; new( & p->pq ) QPointer< QScrollArea >( ( QScrollArea * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QScrollArea %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QScrollBar.cpp b/harbour/contrib/hbqt/qtgui/QScrollBar.cpp index 0ea00de553..0d19872869 100644 --- a/harbour/contrib/hbqt/qtgui/QScrollBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QScrollBar.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QScrollBar > pq; } QGC_POINTER_QScrollBar; -QT_G_FUNC( release_QScrollBar ) +QT_G_FUNC( hbqt_gcRelease_QScrollBar ) { QGC_POINTER_QScrollBar * p = ( QGC_POINTER_QScrollBar * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QScrollBar p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QScrollBar ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QScrollBar p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QScrollBar ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QScrollBar ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QScrollBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QScrollBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QScrollBar Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QScrollBar Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QScrollBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QScrollBar Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QScrollBar( void * pObj ) QGC_POINTER_QScrollBar * p = ( QGC_POINTER_QScrollBar * ) hb_gcAllocate( sizeof( QGC_POINTER_QScrollBar ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QScrollBar; + p->func = hbqt_gcRelease_QScrollBar; new( & p->pq ) QPointer< QScrollBar >( ( QScrollBar * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QScrollBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSessionManager.cpp b/harbour/contrib/hbqt/qtgui/QSessionManager.cpp index 2ccb403341..cb346cbd34 100644 --- a/harbour/contrib/hbqt/qtgui/QSessionManager.cpp +++ b/harbour/contrib/hbqt/qtgui/QSessionManager.cpp @@ -79,7 +79,7 @@ * */ -QT_G_FUNC( release_QSessionManager ) +QT_G_FUNC( hbqt_gcRelease_QSessionManager ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp b/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp index b3201c50d3..b50a8066f7 100644 --- a/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp +++ b/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QSizeGrip > pq; } QGC_POINTER_QSizeGrip; -QT_G_FUNC( release_QSizeGrip ) +QT_G_FUNC( hbqt_gcRelease_QSizeGrip ) { QGC_POINTER_QSizeGrip * p = ( QGC_POINTER_QSizeGrip * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSizeGrip p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSizeGrip ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizeGrip p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizeGrip ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QSizeGrip ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSizeGrip Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizeGrip Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSizeGrip Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSizeGrip Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSizeGrip Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSizeGrip Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QSizeGrip( void * pObj ) QGC_POINTER_QSizeGrip * p = ( QGC_POINTER_QSizeGrip * ) hb_gcAllocate( sizeof( QGC_POINTER_QSizeGrip ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSizeGrip; + p->func = hbqt_gcRelease_QSizeGrip; new( & p->pq ) QPointer< QSizeGrip >( ( QSizeGrip * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSizeGrip %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp b/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp index 552dc7851c..e996036bb0 100644 --- a/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp +++ b/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp @@ -84,22 +84,22 @@ * QSizePolicy ( Policy horizontal, Policy vertical, ControlType type ) */ -QT_G_FUNC( release_QSizePolicy ) +QT_G_FUNC( hbqt_gcRelease_QSizePolicy ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSizePolicy p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QSizePolicy ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizePolicy p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSizePolicy ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QSizePolicy * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QSizePolicy Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QSizePolicy Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSizePolicy Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSizePolicy Object Already deleted!" ) ); } } @@ -108,7 +108,7 @@ void * hbqt_gcAllocate_QSizePolicy( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSizePolicy; + p->func = hbqt_gcRelease_QSizePolicy; HB_TRACE( HB_TR_DEBUG, ( " new_QSizePolicy %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QSlider.cpp b/harbour/contrib/hbqt/qtgui/QSlider.cpp index 6ebfe38af2..3a4f792c45 100644 --- a/harbour/contrib/hbqt/qtgui/QSlider.cpp +++ b/harbour/contrib/hbqt/qtgui/QSlider.cpp @@ -88,12 +88,12 @@ typedef struct QPointer< QSlider > pq; } QGC_POINTER_QSlider; -QT_G_FUNC( release_QSlider ) +QT_G_FUNC( hbqt_gcRelease_QSlider ) { QGC_POINTER_QSlider * p = ( QGC_POINTER_QSlider * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSlider p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSlider ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSlider p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSlider ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -113,16 +113,16 @@ QT_G_FUNC( release_QSlider ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSlider Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSlider Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSlider Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSlider Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSlider Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSlider Object Already deleted!" ) ); } } @@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QSlider( void * pObj ) QGC_POINTER_QSlider * p = ( QGC_POINTER_QSlider * ) hb_gcAllocate( sizeof( QGC_POINTER_QSlider ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSlider; + p->func = hbqt_gcRelease_QSlider; new( & p->pq ) QPointer< QSlider >( ( QSlider * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSlider %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSound.cpp b/harbour/contrib/hbqt/qtgui/QSound.cpp index 17ba608c77..d291971154 100644 --- a/harbour/contrib/hbqt/qtgui/QSound.cpp +++ b/harbour/contrib/hbqt/qtgui/QSound.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QSound > pq; } QGC_POINTER_QSound; -QT_G_FUNC( release_QSound ) +QT_G_FUNC( hbqt_gcRelease_QSound ) { QGC_POINTER_QSound * p = ( QGC_POINTER_QSound * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSound p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSound ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSound p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSound ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QSound ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSound Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSound Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSound Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSound Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSound Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSound Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QSound( void * pObj ) QGC_POINTER_QSound * p = ( QGC_POINTER_QSound * ) hb_gcAllocate( sizeof( QGC_POINTER_QSound ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSound; + p->func = hbqt_gcRelease_QSound; new( & p->pq ) QPointer< QSound >( ( QSound * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSound %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp b/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp index 7f94ebd644..78d800a76a 100644 --- a/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp @@ -75,22 +75,22 @@ * */ -QT_G_FUNC( release_QSpacerItem ) +QT_G_FUNC( hbqt_gcRelease_QSpacerItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSpacerItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QSpacerItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSpacerItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSpacerItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QSpacerItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QSpacerItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QSpacerItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSpacerItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSpacerItem Object Already deleted!" ) ); } } @@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QSpacerItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSpacerItem; + p->func = hbqt_gcRelease_QSpacerItem; HB_TRACE( HB_TR_DEBUG, ( " new_QSpacerItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QSpinBox.cpp index 0f1de57a50..1ddf85a2cf 100644 --- a/harbour/contrib/hbqt/qtgui/QSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QSpinBox.cpp @@ -82,12 +82,12 @@ typedef struct QPointer< QSpinBox > pq; } QGC_POINTER_QSpinBox; -QT_G_FUNC( release_QSpinBox ) +QT_G_FUNC( hbqt_gcRelease_QSpinBox ) { QGC_POINTER_QSpinBox * p = ( QGC_POINTER_QSpinBox * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSpinBox p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSpinBox ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSpinBox p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSpinBox ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -107,16 +107,16 @@ QT_G_FUNC( release_QSpinBox ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSpinBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSpinBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSpinBox Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSpinBox Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSpinBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSpinBox Object Already deleted!" ) ); } } @@ -125,7 +125,7 @@ void * hbqt_gcAllocate_QSpinBox( void * pObj ) QGC_POINTER_QSpinBox * p = ( QGC_POINTER_QSpinBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QSpinBox ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSpinBox; + p->func = hbqt_gcRelease_QSpinBox; new( & p->pq ) QPointer< QSpinBox >( ( QSpinBox * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSpinBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp b/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp index 628548ff15..c29c8c18de 100644 --- a/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp +++ b/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QSplashScreen > pq; } QGC_POINTER_QSplashScreen; -QT_G_FUNC( release_QSplashScreen ) +QT_G_FUNC( hbqt_gcRelease_QSplashScreen ) { QGC_POINTER_QSplashScreen * p = ( QGC_POINTER_QSplashScreen * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSplashScreen p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSplashScreen ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSplashScreen p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSplashScreen ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QSplashScreen ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSplashScreen Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSplashScreen Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSplashScreen Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSplashScreen Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSplashScreen Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSplashScreen Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QSplashScreen( void * pObj ) QGC_POINTER_QSplashScreen * p = ( QGC_POINTER_QSplashScreen * ) hb_gcAllocate( sizeof( QGC_POINTER_QSplashScreen ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSplashScreen; + p->func = hbqt_gcRelease_QSplashScreen; new( & p->pq ) QPointer< QSplashScreen >( ( QSplashScreen * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSplashScreen %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSplitter.cpp b/harbour/contrib/hbqt/qtgui/QSplitter.cpp index 34362e227d..eaa555c273 100644 --- a/harbour/contrib/hbqt/qtgui/QSplitter.cpp +++ b/harbour/contrib/hbqt/qtgui/QSplitter.cpp @@ -94,12 +94,12 @@ typedef struct QPointer< QSplitter > pq; } QGC_POINTER_QSplitter; -QT_G_FUNC( release_QSplitter ) +QT_G_FUNC( hbqt_gcRelease_QSplitter ) { QGC_POINTER_QSplitter * p = ( QGC_POINTER_QSplitter * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSplitter p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSplitter ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSplitter p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSplitter ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -119,16 +119,16 @@ QT_G_FUNC( release_QSplitter ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSplitter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSplitter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSplitter Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSplitter Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSplitter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSplitter Object Already deleted!" ) ); } } @@ -137,7 +137,7 @@ void * hbqt_gcAllocate_QSplitter( void * pObj ) QGC_POINTER_QSplitter * p = ( QGC_POINTER_QSplitter * ) hb_gcAllocate( sizeof( QGC_POINTER_QSplitter ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSplitter; + p->func = hbqt_gcRelease_QSplitter; new( & p->pq ) QPointer< QSplitter >( ( QSplitter * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSplitter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QStandardItem.cpp b/harbour/contrib/hbqt/qtgui/QStandardItem.cpp index 3825feeba1..7fb87262a2 100644 --- a/harbour/contrib/hbqt/qtgui/QStandardItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QStandardItem.cpp @@ -99,22 +99,22 @@ * virtual ~QStandardItem () */ -QT_G_FUNC( release_QStandardItem ) +QT_G_FUNC( hbqt_gcRelease_QStandardItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStandardItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStandardItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStandardItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStandardItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStandardItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStandardItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStandardItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStandardItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStandardItem Object Already deleted!" ) ); } } @@ -123,7 +123,7 @@ void * hbqt_gcAllocate_QStandardItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStandardItem; + p->func = hbqt_gcRelease_QStandardItem; HB_TRACE( HB_TR_DEBUG, ( " new_QStandardItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp b/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp index bafb81009b..286ad0ae5a 100644 --- a/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp @@ -99,12 +99,12 @@ typedef struct QPointer< QStandardItemModel > pq; } QGC_POINTER_QStandardItemModel; -QT_G_FUNC( release_QStandardItemModel ) +QT_G_FUNC( hbqt_gcRelease_QStandardItemModel ) { QGC_POINTER_QStandardItemModel * p = ( QGC_POINTER_QStandardItemModel * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStandardItemModel p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QStandardItemModel ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStandardItemModel p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStandardItemModel ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -124,16 +124,16 @@ QT_G_FUNC( release_QStandardItemModel ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QStandardItemModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStandardItemModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QStandardItemModel Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QStandardItemModel Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStandardItemModel Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStandardItemModel Object Already deleted!" ) ); } } @@ -142,7 +142,7 @@ void * hbqt_gcAllocate_QStandardItemModel( void * pObj ) QGC_POINTER_QStandardItemModel * p = ( QGC_POINTER_QStandardItemModel * ) hb_gcAllocate( sizeof( QGC_POINTER_QStandardItemModel ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStandardItemModel; + p->func = hbqt_gcRelease_QStandardItemModel; new( & p->pq ) QPointer< QStandardItemModel >( ( QStandardItemModel * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QStandardItemModel %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QStatusBar.cpp b/harbour/contrib/hbqt/qtgui/QStatusBar.cpp index 644e845e74..4eaafe3555 100644 --- a/harbour/contrib/hbqt/qtgui/QStatusBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStatusBar.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QStatusBar > pq; } QGC_POINTER_QStatusBar; -QT_G_FUNC( release_QStatusBar ) +QT_G_FUNC( hbqt_gcRelease_QStatusBar ) { QGC_POINTER_QStatusBar * p = ( QGC_POINTER_QStatusBar * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStatusBar p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QStatusBar ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStatusBar p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStatusBar ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QStatusBar ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QStatusBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStatusBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QStatusBar Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QStatusBar Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStatusBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStatusBar Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QStatusBar( void * pObj ) QGC_POINTER_QStatusBar * p = ( QGC_POINTER_QStatusBar * ) hb_gcAllocate( sizeof( QGC_POINTER_QStatusBar ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStatusBar; + p->func = hbqt_gcRelease_QStatusBar; new( & p->pq ) QPointer< QStatusBar >( ( QStatusBar * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QStatusBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QStringListModel.cpp b/harbour/contrib/hbqt/qtgui/QStringListModel.cpp index 6915cecaef..7813704d6f 100644 --- a/harbour/contrib/hbqt/qtgui/QStringListModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QStringListModel.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QStringListModel > pq; } QGC_POINTER_QStringListModel; -QT_G_FUNC( release_QStringListModel ) +QT_G_FUNC( hbqt_gcRelease_QStringListModel ) { QGC_POINTER_QStringListModel * p = ( QGC_POINTER_QStringListModel * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStringListModel p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QStringListModel ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStringListModel p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStringListModel ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QStringListModel ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QStringListModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStringListModel Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QStringListModel Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QStringListModel Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStringListModel Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStringListModel Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QStringListModel( void * pObj ) QGC_POINTER_QStringListModel * p = ( QGC_POINTER_QStringListModel * ) hb_gcAllocate( sizeof( QGC_POINTER_QStringListModel ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStringListModel; + p->func = hbqt_gcRelease_QStringListModel; new( & p->pq ) QPointer< QStringListModel >( ( QStringListModel * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QStringListModel %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QStyle.cpp b/harbour/contrib/hbqt/qtgui/QStyle.cpp index 51c6482256..2a474be3df 100644 --- a/harbour/contrib/hbqt/qtgui/QStyle.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyle.cpp @@ -91,7 +91,7 @@ * virtual ~QStyle () */ -QT_G_FUNC( release_QStyle ) +QT_G_FUNC( hbqt_gcRelease_QStyle ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp b/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp index e71b009bbb..2643881481 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp @@ -75,22 +75,22 @@ * */ -QT_G_FUNC( release_QStyleFactory ) +QT_G_FUNC( hbqt_gcRelease_QStyleFactory ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleFactory p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleFactory ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleFactory p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleFactory ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleFactory * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleFactory Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleFactory Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleFactory Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleFactory Object Already deleted!" ) ); } } @@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QStyleFactory( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleFactory; + p->func = hbqt_gcRelease_QStyleFactory; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleFactory %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp b/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp index 4dddf2b314..7c4bbe3810 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp @@ -81,7 +81,7 @@ * QStyleHintReturn ( int version = QStyleOption::Version, int type = SH_Default ) */ -QT_G_FUNC( release_QStyleHintReturn ) +QT_G_FUNC( hbqt_gcRelease_QStyleHintReturn ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp b/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp index 1479574770..45dcc19bde 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp @@ -81,7 +81,7 @@ * QStyleHintReturnMask () */ -QT_G_FUNC( release_QStyleHintReturnMask ) +QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnMask ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp b/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp index 2d791b1d73..2e69ac0c9b 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp @@ -81,7 +81,7 @@ * QStyleHintReturnVariant () */ -QT_G_FUNC( release_QStyleHintReturnVariant ) +QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnVariant ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOption.cpp b/harbour/contrib/hbqt/qtgui/QStyleOption.cpp index e57418641d..59e690516c 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOption.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOption.cpp @@ -83,22 +83,22 @@ * ~QStyleOption () */ -QT_G_FUNC( release_QStyleOption ) +QT_G_FUNC( hbqt_gcRelease_QStyleOption ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOption p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOption ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOption p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOption ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOption * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOption Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOption Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOption Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOption Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QStyleOption( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOption; + p->func = hbqt_gcRelease_QStyleOption; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOption %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp index c970b881da..24497b27fe 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp @@ -83,22 +83,22 @@ * QStyleOptionButton ( const QStyleOptionButton & other ) */ -QT_G_FUNC( release_QStyleOptionButton ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionButton ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionButton p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionButton ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionButton p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionButton ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionButton * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionButton Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionButton Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QStyleOptionButton( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionButton; + p->func = hbqt_gcRelease_QStyleOptionButton; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionButton %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp index 1fa816cd70..2bcb3ad1f1 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp @@ -81,22 +81,22 @@ * QStyleOptionComboBox ( const QStyleOptionComboBox & other ) */ -QT_G_FUNC( release_QStyleOptionComboBox ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionComboBox ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionComboBox p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionComboBox ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionComboBox p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionComboBox ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionComboBox * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionComboBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionComboBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionComboBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionComboBox Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionComboBox( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionComboBox; + p->func = hbqt_gcRelease_QStyleOptionComboBox; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionComboBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp index 38572dc260..294723c988 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp @@ -81,22 +81,22 @@ * QStyleOptionComplex ( const QStyleOptionComplex & other ) */ -QT_G_FUNC( release_QStyleOptionComplex ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionComplex ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionComplex p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionComplex ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionComplex p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionComplex ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionComplex * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionComplex Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionComplex Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionComplex Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionComplex Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionComplex( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionComplex; + p->func = hbqt_gcRelease_QStyleOptionComplex; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionComplex %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp index c013a14b05..bb83b59b5c 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp @@ -81,22 +81,22 @@ * QStyleOptionDockWidget ( const QStyleOptionDockWidget & other ) */ -QT_G_FUNC( release_QStyleOptionDockWidget ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionDockWidget ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionDockWidget p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionDockWidget ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionDockWidget p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionDockWidget ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionDockWidget * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionDockWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionDockWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionDockWidget Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionDockWidget Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionDockWidget( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionDockWidget; + p->func = hbqt_gcRelease_QStyleOptionDockWidget; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionDockWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp index 6502e5f893..af8860b470 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp @@ -81,22 +81,22 @@ * QStyleOptionFocusRect ( const QStyleOptionFocusRect & other ) */ -QT_G_FUNC( release_QStyleOptionFocusRect ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionFocusRect ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionFocusRect p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionFocusRect ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionFocusRect p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionFocusRect ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionFocusRect * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionFocusRect Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionFocusRect Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionFocusRect Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionFocusRect Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionFocusRect( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionFocusRect; + p->func = hbqt_gcRelease_QStyleOptionFocusRect; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionFocusRect %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp index 474eedc182..9a1c0d3b91 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp @@ -81,22 +81,22 @@ * QStyleOptionFrame ( const QStyleOptionFrame & other ) */ -QT_G_FUNC( release_QStyleOptionFrame ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionFrame ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionFrame p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionFrame ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionFrame p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionFrame ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionFrame * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionFrame Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionFrame Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionFrame( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionFrame; + p->func = hbqt_gcRelease_QStyleOptionFrame; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionFrame %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp index 53f2a63fc9..0a92425df4 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp @@ -81,22 +81,22 @@ * QStyleOptionGroupBox ( const QStyleOptionGroupBox & other ) */ -QT_G_FUNC( release_QStyleOptionGroupBox ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionGroupBox ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionGroupBox p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionGroupBox ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionGroupBox p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionGroupBox ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionGroupBox * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionGroupBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionGroupBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionGroupBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionGroupBox Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionGroupBox( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionGroupBox; + p->func = hbqt_gcRelease_QStyleOptionGroupBox; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionGroupBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp index 961259e8a8..682e0f514a 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp @@ -84,22 +84,22 @@ * QStyleOptionHeader ( const QStyleOptionHeader & other ) */ -QT_G_FUNC( release_QStyleOptionHeader ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionHeader ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionHeader p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionHeader ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionHeader p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionHeader ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionHeader * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionHeader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionHeader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionHeader Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionHeader Object Already deleted!" ) ); } } @@ -108,7 +108,7 @@ void * hbqt_gcAllocate_QStyleOptionHeader( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionHeader; + p->func = hbqt_gcRelease_QStyleOptionHeader; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionHeader %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp index e093e0a463..5109e6c1e8 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp @@ -83,22 +83,22 @@ * QStyleOptionMenuItem ( const QStyleOptionMenuItem & other ) */ -QT_G_FUNC( release_QStyleOptionMenuItem ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionMenuItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionMenuItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionMenuItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionMenuItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionMenuItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionMenuItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionMenuItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionMenuItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionMenuItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionMenuItem Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QStyleOptionMenuItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionMenuItem; + p->func = hbqt_gcRelease_QStyleOptionMenuItem; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionMenuItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp index ba159b50b1..59b6ffec91 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp @@ -82,22 +82,22 @@ * QStyleOptionProgressBar ( const QStyleOptionProgressBar & other ) */ -QT_G_FUNC( release_QStyleOptionProgressBar ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionProgressBar ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionProgressBar p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionProgressBar ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionProgressBar p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionProgressBar ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionProgressBar * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionProgressBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionProgressBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionProgressBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionProgressBar Object Already deleted!" ) ); } } @@ -106,7 +106,7 @@ void * hbqt_gcAllocate_QStyleOptionProgressBar( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionProgressBar; + p->func = hbqt_gcRelease_QStyleOptionProgressBar; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionProgressBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp index fc2bf0927f..f6711a2fbf 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp @@ -81,22 +81,22 @@ * QStyleOptionSizeGrip ( const QStyleOptionSizeGrip & other ) */ -QT_G_FUNC( release_QStyleOptionSizeGrip ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionSizeGrip ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionSizeGrip p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionSizeGrip ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionSizeGrip p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionSizeGrip ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionSizeGrip * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionSizeGrip Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionSizeGrip Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionSizeGrip Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionSizeGrip Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionSizeGrip( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionSizeGrip; + p->func = hbqt_gcRelease_QStyleOptionSizeGrip; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionSizeGrip %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp index e0be5d74d3..c1aaade070 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp @@ -81,22 +81,22 @@ * QStyleOptionSlider ( const QStyleOptionSlider & other ) */ -QT_G_FUNC( release_QStyleOptionSlider ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionSlider ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionSlider p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionSlider ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionSlider p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionSlider ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionSlider * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionSlider Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionSlider Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionSlider Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionSlider Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionSlider( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionSlider; + p->func = hbqt_gcRelease_QStyleOptionSlider; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionSlider %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp index c55c31e62e..4b7f256920 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp @@ -81,22 +81,22 @@ * QStyleOptionSpinBox ( const QStyleOptionSpinBox & other ) */ -QT_G_FUNC( release_QStyleOptionSpinBox ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionSpinBox ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionSpinBox p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionSpinBox ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionSpinBox p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionSpinBox ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionSpinBox * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionSpinBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionSpinBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionSpinBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionSpinBox Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionSpinBox( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionSpinBox; + p->func = hbqt_gcRelease_QStyleOptionSpinBox; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionSpinBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp index f3c005a179..b31cbc2a73 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp @@ -85,22 +85,22 @@ * QStyleOptionTab ( const QStyleOptionTab & other ) */ -QT_G_FUNC( release_QStyleOptionTab ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionTab ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTab p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTab ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTab p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTab ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionTab * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionTab Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionTab Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionTab Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionTab Object Already deleted!" ) ); } } @@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QStyleOptionTab( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionTab; + p->func = hbqt_gcRelease_QStyleOptionTab; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionTab %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp index b58ce195fc..9b16e8bfbb 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp @@ -81,22 +81,22 @@ * QStyleOptionTabBarBase ( const QStyleOptionTabBarBase & other ) */ -QT_G_FUNC( release_QStyleOptionTabBarBase ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabBarBase ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTabBarBase p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTabBarBase ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTabBarBase p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTabBarBase ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionTabBarBase * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionTabBarBase Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionTabBarBase Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionTabBarBase Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionTabBarBase Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionTabBarBase( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionTabBarBase; + p->func = hbqt_gcRelease_QStyleOptionTabBarBase; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionTabBarBase %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp index ba4b332c08..9a9cd2991b 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp @@ -81,22 +81,22 @@ * QStyleOptionTabWidgetFrame ( const QStyleOptionTabWidgetFrame & other ) */ -QT_G_FUNC( release_QStyleOptionTabWidgetFrame ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabWidgetFrame ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTabWidgetFrame p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTabWidgetFrame ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTabWidgetFrame p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTabWidgetFrame ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionTabWidgetFrame * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionTabWidgetFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionTabWidgetFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionTabWidgetFrame Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionTabWidgetFrame Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionTabWidgetFrame( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionTabWidgetFrame; + p->func = hbqt_gcRelease_QStyleOptionTabWidgetFrame; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionTabWidgetFrame %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp index 4de4a9d8f0..a3a2248b4a 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp @@ -81,22 +81,22 @@ * QStyleOptionTitleBar ( const QStyleOptionTitleBar & other ) */ -QT_G_FUNC( release_QStyleOptionTitleBar ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionTitleBar ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTitleBar p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionTitleBar ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTitleBar p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionTitleBar ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionTitleBar * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionTitleBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionTitleBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionTitleBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionTitleBar Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionTitleBar( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionTitleBar; + p->func = hbqt_gcRelease_QStyleOptionTitleBar; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionTitleBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp index 1ed66f4572..c24ac297fc 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp @@ -84,22 +84,22 @@ * QStyleOptionToolBar ( const QStyleOptionToolBar & other ) */ -QT_G_FUNC( release_QStyleOptionToolBar ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBar ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionToolBar p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionToolBar ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionToolBar p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionToolBar ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionToolBar * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionToolBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionToolBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionToolBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionToolBar Object Already deleted!" ) ); } } @@ -108,7 +108,7 @@ void * hbqt_gcAllocate_QStyleOptionToolBar( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionToolBar; + p->func = hbqt_gcRelease_QStyleOptionToolBar; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionToolBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp index 240785575d..83474541fe 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp @@ -81,22 +81,22 @@ * QStyleOptionToolBox ( const QStyleOptionToolBox & other ) */ -QT_G_FUNC( release_QStyleOptionToolBox ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBox ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionToolBox p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionToolBox ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionToolBox p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionToolBox ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionToolBox * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionToolBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionToolBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionToolBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionToolBox Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QStyleOptionToolBox( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionToolBox; + p->func = hbqt_gcRelease_QStyleOptionToolBox; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionToolBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp index 844ab912b3..c237477d89 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp @@ -83,22 +83,22 @@ * QStyleOptionToolButton ( const QStyleOptionToolButton & other ) */ -QT_G_FUNC( release_QStyleOptionToolButton ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolButton ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionToolButton p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionToolButton ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionToolButton p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionToolButton ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionToolButton * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionToolButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionToolButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionToolButton Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionToolButton Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QStyleOptionToolButton( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionToolButton; + p->func = hbqt_gcRelease_QStyleOptionToolButton; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionToolButton %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp index e726ca3205..4570cc9f4b 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp @@ -82,22 +82,22 @@ * QStyleOptionViewItem ( const QStyleOptionViewItem & other ) */ -QT_G_FUNC( release_QStyleOptionViewItem ) +QT_G_FUNC( hbqt_gcRelease_QStyleOptionViewItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionViewItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyleOptionViewItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionViewItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyleOptionViewItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStyleOptionViewItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStyleOptionViewItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStyleOptionViewItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyleOptionViewItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyleOptionViewItem Object Already deleted!" ) ); } } @@ -106,7 +106,7 @@ void * hbqt_gcAllocate_QStyleOptionViewItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyleOptionViewItem; + p->func = hbqt_gcRelease_QStyleOptionViewItem; HB_TRACE( HB_TR_DEBUG, ( " new_QStyleOptionViewItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStylePainter.cpp b/harbour/contrib/hbqt/qtgui/QStylePainter.cpp index b5ba6dc3d0..3d8ac89b8a 100644 --- a/harbour/contrib/hbqt/qtgui/QStylePainter.cpp +++ b/harbour/contrib/hbqt/qtgui/QStylePainter.cpp @@ -77,22 +77,22 @@ * QStylePainter ( QPaintDevice * pd, QWidget * widget ) */ -QT_G_FUNC( release_QStylePainter ) +QT_G_FUNC( hbqt_gcRelease_QStylePainter ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStylePainter p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QStylePainter ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStylePainter p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStylePainter ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QStylePainter * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QStylePainter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QStylePainter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStylePainter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStylePainter Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QStylePainter( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStylePainter; + p->func = hbqt_gcRelease_QStylePainter; HB_TRACE( HB_TR_DEBUG, ( " new_QStylePainter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp b/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp index 83556d71dc..9934e4ca1a 100644 --- a/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QStyledItemDelegate > pq; } QGC_POINTER_QStyledItemDelegate; -QT_G_FUNC( release_QStyledItemDelegate ) +QT_G_FUNC( hbqt_gcRelease_QStyledItemDelegate ) { QGC_POINTER_QStyledItemDelegate * p = ( QGC_POINTER_QStyledItemDelegate * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyledItemDelegate p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QStyledItemDelegate ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyledItemDelegate p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyledItemDelegate ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QStyledItemDelegate ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QStyledItemDelegate Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QStyledItemDelegate Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QStyledItemDelegate Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QStyledItemDelegate Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QStyledItemDelegate Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QStyledItemDelegate Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QStyledItemDelegate( void * pObj ) QGC_POINTER_QStyledItemDelegate * p = ( QGC_POINTER_QStyledItemDelegate * ) hb_gcAllocate( sizeof( QGC_POINTER_QStyledItemDelegate ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QStyledItemDelegate; + p->func = hbqt_gcRelease_QStyledItemDelegate; new( & p->pq ) QPointer< QStyledItemDelegate >( ( QStyledItemDelegate * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QStyledItemDelegate %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp b/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp index 62bc5e8b12..05217262af 100644 --- a/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp +++ b/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp @@ -85,12 +85,12 @@ typedef struct QPointer< QSyntaxHighlighter > pq; } QGC_POINTER_QSyntaxHighlighter; -QT_G_FUNC( release_QSyntaxHighlighter ) +QT_G_FUNC( hbqt_gcRelease_QSyntaxHighlighter ) { QGC_POINTER_QSyntaxHighlighter * p = ( QGC_POINTER_QSyntaxHighlighter * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSyntaxHighlighter p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSyntaxHighlighter ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSyntaxHighlighter p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSyntaxHighlighter ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -110,16 +110,16 @@ QT_G_FUNC( release_QSyntaxHighlighter ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSyntaxHighlighter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSyntaxHighlighter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSyntaxHighlighter Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSyntaxHighlighter Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSyntaxHighlighter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSyntaxHighlighter Object Already deleted!" ) ); } } @@ -128,7 +128,7 @@ void * hbqt_gcAllocate_QSyntaxHighlighter( void * pObj ) QGC_POINTER_QSyntaxHighlighter * p = ( QGC_POINTER_QSyntaxHighlighter * ) hb_gcAllocate( sizeof( QGC_POINTER_QSyntaxHighlighter ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSyntaxHighlighter; + p->func = hbqt_gcRelease_QSyntaxHighlighter; new( & p->pq ) QPointer< QSyntaxHighlighter >( ( QSyntaxHighlighter * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSyntaxHighlighter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp b/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp index 6d490bbaee..aaf591a296 100644 --- a/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp +++ b/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp @@ -89,12 +89,12 @@ typedef struct QPointer< QSystemTrayIcon > pq; } QGC_POINTER_QSystemTrayIcon; -QT_G_FUNC( release_QSystemTrayIcon ) +QT_G_FUNC( hbqt_gcRelease_QSystemTrayIcon ) { QGC_POINTER_QSystemTrayIcon * p = ( QGC_POINTER_QSystemTrayIcon * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QSystemTrayIcon p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QSystemTrayIcon ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSystemTrayIcon p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSystemTrayIcon ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -114,16 +114,16 @@ QT_G_FUNC( release_QSystemTrayIcon ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QSystemTrayIcon Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QSystemTrayIcon Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QSystemTrayIcon Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QSystemTrayIcon Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QSystemTrayIcon Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QSystemTrayIcon Object Already deleted!" ) ); } } @@ -132,7 +132,7 @@ void * hbqt_gcAllocate_QSystemTrayIcon( void * pObj ) QGC_POINTER_QSystemTrayIcon * p = ( QGC_POINTER_QSystemTrayIcon * ) hb_gcAllocate( sizeof( QGC_POINTER_QSystemTrayIcon ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QSystemTrayIcon; + p->func = hbqt_gcRelease_QSystemTrayIcon; new( & p->pq ) QPointer< QSystemTrayIcon >( ( QSystemTrayIcon * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QSystemTrayIcon %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTabBar.cpp b/harbour/contrib/hbqt/qtgui/QTabBar.cpp index da8beb0fe7..9832530b98 100644 --- a/harbour/contrib/hbqt/qtgui/QTabBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QTabBar.cpp @@ -90,12 +90,12 @@ typedef struct QPointer< QTabBar > pq; } QGC_POINTER_QTabBar; -QT_G_FUNC( release_QTabBar ) +QT_G_FUNC( hbqt_gcRelease_QTabBar ) { QGC_POINTER_QTabBar * p = ( QGC_POINTER_QTabBar * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTabBar p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTabBar ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTabBar p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTabBar ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -115,16 +115,16 @@ QT_G_FUNC( release_QTabBar ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTabBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTabBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTabBar Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTabBar Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTabBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTabBar Object Already deleted!" ) ); } } @@ -133,7 +133,7 @@ void * hbqt_gcAllocate_QTabBar( void * pObj ) QGC_POINTER_QTabBar * p = ( QGC_POINTER_QTabBar * ) hb_gcAllocate( sizeof( QGC_POINTER_QTabBar ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTabBar; + p->func = hbqt_gcRelease_QTabBar; new( & p->pq ) QPointer< QTabBar >( ( QTabBar * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTabBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTabWidget.cpp b/harbour/contrib/hbqt/qtgui/QTabWidget.cpp index a507ddb300..c995674bc9 100644 --- a/harbour/contrib/hbqt/qtgui/QTabWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QTabWidget.cpp @@ -88,12 +88,12 @@ typedef struct QPointer< QTabWidget > pq; } QGC_POINTER_QTabWidget; -QT_G_FUNC( release_QTabWidget ) +QT_G_FUNC( hbqt_gcRelease_QTabWidget ) { QGC_POINTER_QTabWidget * p = ( QGC_POINTER_QTabWidget * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTabWidget p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTabWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTabWidget p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTabWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -113,16 +113,16 @@ QT_G_FUNC( release_QTabWidget ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTabWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTabWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTabWidget Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTabWidget Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTabWidget Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTabWidget Object Already deleted!" ) ); } } @@ -131,7 +131,7 @@ void * hbqt_gcAllocate_QTabWidget( void * pObj ) QGC_POINTER_QTabWidget * p = ( QGC_POINTER_QTabWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QTabWidget ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTabWidget; + p->func = hbqt_gcRelease_QTabWidget; new( & p->pq ) QPointer< QTabWidget >( ( QTabWidget * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTabWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTableView.cpp b/harbour/contrib/hbqt/qtgui/QTableView.cpp index 4beafc512b..e99fac579b 100644 --- a/harbour/contrib/hbqt/qtgui/QTableView.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableView.cpp @@ -85,12 +85,12 @@ typedef struct QPointer< QTableView > pq; } QGC_POINTER_QTableView; -QT_G_FUNC( release_QTableView ) +QT_G_FUNC( hbqt_gcRelease_QTableView ) { QGC_POINTER_QTableView * p = ( QGC_POINTER_QTableView * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTableView p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTableView ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableView p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableView ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -110,16 +110,16 @@ QT_G_FUNC( release_QTableView ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTableView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTableView Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTableView Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTableView Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTableView Object Already deleted!" ) ); } } @@ -128,7 +128,7 @@ void * hbqt_gcAllocate_QTableView( void * pObj ) QGC_POINTER_QTableView * p = ( QGC_POINTER_QTableView * ) hb_gcAllocate( sizeof( QGC_POINTER_QTableView ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTableView; + p->func = hbqt_gcRelease_QTableView; new( & p->pq ) QPointer< QTableView >( ( QTableView * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTableView %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTableWidget.cpp b/harbour/contrib/hbqt/qtgui/QTableWidget.cpp index f9b3b39748..dc99653921 100644 --- a/harbour/contrib/hbqt/qtgui/QTableWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableWidget.cpp @@ -95,12 +95,12 @@ typedef struct QPointer< QTableWidget > pq; } QGC_POINTER_QTableWidget; -QT_G_FUNC( release_QTableWidget ) +QT_G_FUNC( hbqt_gcRelease_QTableWidget ) { QGC_POINTER_QTableWidget * p = ( QGC_POINTER_QTableWidget * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidget p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidget p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -120,16 +120,16 @@ QT_G_FUNC( release_QTableWidget ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTableWidget Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTableWidget Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTableWidget Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTableWidget Object Already deleted!" ) ); } } @@ -138,7 +138,7 @@ void * hbqt_gcAllocate_QTableWidget( void * pObj ) QGC_POINTER_QTableWidget * p = ( QGC_POINTER_QTableWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QTableWidget ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTableWidget; + p->func = hbqt_gcRelease_QTableWidget; new( & p->pq ) QPointer< QTableWidget >( ( QTableWidget * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTableWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp index 381bf427c0..f389d2a5ac 100644 --- a/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp @@ -83,22 +83,22 @@ * virtual ~QTableWidgetItem () */ -QT_G_FUNC( release_QTableWidgetItem ) +QT_G_FUNC( hbqt_gcRelease_QTableWidgetItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidgetItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidgetItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidgetItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidgetItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTableWidgetItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTableWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTableWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTableWidgetItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTableWidgetItem Object Already deleted!" ) ); } } @@ -107,7 +107,7 @@ void * hbqt_gcAllocate_QTableWidgetItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTableWidgetItem; + p->func = hbqt_gcRelease_QTableWidgetItem; HB_TRACE( HB_TR_DEBUG, ( " new_QTableWidgetItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp b/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp index 5af7fbafb3..33d59981c0 100644 --- a/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp @@ -77,22 +77,22 @@ * ~QTableWidgetSelectionRange () */ -QT_G_FUNC( release_QTableWidgetSelectionRange ) +QT_G_FUNC( hbqt_gcRelease_QTableWidgetSelectionRange ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidgetSelectionRange p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTableWidgetSelectionRange ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidgetSelectionRange p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTableWidgetSelectionRange ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTableWidgetSelectionRange * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTableWidgetSelectionRange Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTableWidgetSelectionRange Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTableWidgetSelectionRange Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTableWidgetSelectionRange Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QTableWidgetSelectionRange( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTableWidgetSelectionRange; + p->func = hbqt_gcRelease_QTableWidgetSelectionRange; HB_TRACE( HB_TR_DEBUG, ( " new_QTableWidgetSelectionRange %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextBlock.cpp b/harbour/contrib/hbqt/qtgui/QTextBlock.cpp index 03adc8e9d0..31d0554787 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBlock.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBlock.cpp @@ -75,22 +75,22 @@ * QTextBlock ( const QTextBlock & other ) */ -QT_G_FUNC( release_QTextBlock ) +QT_G_FUNC( hbqt_gcRelease_QTextBlock ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBlock p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBlock ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBlock p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBlock ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextBlock * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextBlock Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextBlock Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextBlock Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextBlock Object Already deleted!" ) ); } } @@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QTextBlock( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextBlock; + p->func = hbqt_gcRelease_QTextBlock; HB_TRACE( HB_TR_DEBUG, ( " new_QTextBlock %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp index 8e6622a828..9289af74fc 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp @@ -94,22 +94,22 @@ * */ -QT_G_FUNC( release_QTextBlockFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextBlockFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBlockFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBlockFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBlockFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBlockFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextBlockFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextBlockFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextBlockFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextBlockFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextBlockFormat Object Already deleted!" ) ); } } @@ -118,7 +118,7 @@ void * hbqt_gcAllocate_QTextBlockFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextBlockFormat; + p->func = hbqt_gcRelease_QTextBlockFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextBlockFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp b/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp index 2425d11f43..71e393540e 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp @@ -75,7 +75,7 @@ * QTextBlockGroup ( QTextDocument * document ) */ -QT_G_FUNC( release_QTextBlockGroup ) +QT_G_FUNC( hbqt_gcRelease_QTextBlockGroup ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp b/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp index cf2cbd2eb3..a66553646e 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp @@ -82,12 +82,12 @@ typedef struct QPointer< QTextBrowser > pq; } QGC_POINTER_QTextBrowser; -QT_G_FUNC( release_QTextBrowser ) +QT_G_FUNC( hbqt_gcRelease_QTextBrowser ) { QGC_POINTER_QTextBrowser * p = ( QGC_POINTER_QTextBrowser * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBrowser p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBrowser ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBrowser p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBrowser ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -107,16 +107,16 @@ QT_G_FUNC( release_QTextBrowser ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextBrowser Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextBrowser Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTextBrowser Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTextBrowser Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextBrowser Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextBrowser Object Already deleted!" ) ); } } @@ -125,7 +125,7 @@ void * hbqt_gcAllocate_QTextBrowser( void * pObj ) QGC_POINTER_QTextBrowser * p = ( QGC_POINTER_QTextBrowser * ) hb_gcAllocate( sizeof( QGC_POINTER_QTextBrowser ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextBrowser; + p->func = hbqt_gcRelease_QTextBrowser; new( & p->pq ) QPointer< QTextBrowser >( ( QTextBrowser * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTextBrowser %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp index 2682503845..aecc84e12e 100644 --- a/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp @@ -81,22 +81,22 @@ * */ -QT_G_FUNC( release_QTextCharFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextCharFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextCharFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextCharFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextCharFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextCharFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextCharFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextCharFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextCharFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextCharFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextCharFormat Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QTextCharFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextCharFormat; + p->func = hbqt_gcRelease_QTextCharFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextCharFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextCursor.cpp b/harbour/contrib/hbqt/qtgui/QTextCursor.cpp index b97edeeb63..fe998c083e 100644 --- a/harbour/contrib/hbqt/qtgui/QTextCursor.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextCursor.cpp @@ -87,22 +87,22 @@ * ~QTextCursor () */ -QT_G_FUNC( release_QTextCursor ) +QT_G_FUNC( hbqt_gcRelease_QTextCursor ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextCursor p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextCursor ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextCursor p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextCursor ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextCursor * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextCursor Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextCursor Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextCursor Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextCursor Object Already deleted!" ) ); } } @@ -111,7 +111,7 @@ void * hbqt_gcAllocate_QTextCursor( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextCursor; + p->func = hbqt_gcRelease_QTextCursor; HB_TRACE( HB_TR_DEBUG, ( " new_QTextCursor %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextDocument.cpp b/harbour/contrib/hbqt/qtgui/QTextDocument.cpp index e934ec2ccf..58dc0cbab7 100644 --- a/harbour/contrib/hbqt/qtgui/QTextDocument.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextDocument.cpp @@ -106,12 +106,12 @@ typedef struct QPointer< QTextDocument > pq; } QGC_POINTER_QTextDocument; -QT_G_FUNC( release_QTextDocument ) +QT_G_FUNC( hbqt_gcRelease_QTextDocument ) { QGC_POINTER_QTextDocument * p = ( QGC_POINTER_QTextDocument * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocument p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocument ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocument p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocument ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -131,16 +131,16 @@ QT_G_FUNC( release_QTextDocument ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocument Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocument Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTextDocument Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTextDocument Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextDocument Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextDocument Object Already deleted!" ) ); } } @@ -149,7 +149,7 @@ void * hbqt_gcAllocate_QTextDocument( void * pObj ) QGC_POINTER_QTextDocument * p = ( QGC_POINTER_QTextDocument * ) hb_gcAllocate( sizeof( QGC_POINTER_QTextDocument ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextDocument; + p->func = hbqt_gcRelease_QTextDocument; new( & p->pq ) QPointer< QTextDocument >( ( QTextDocument * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTextDocument %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp b/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp index 277c68a917..0a45591d59 100644 --- a/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp @@ -79,22 +79,22 @@ * ~QTextDocumentFragment () */ -QT_G_FUNC( release_QTextDocumentFragment ) +QT_G_FUNC( hbqt_gcRelease_QTextDocumentFragment ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocumentFragment p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocumentFragment ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocumentFragment p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocumentFragment ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextDocumentFragment * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextDocumentFragment Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextDocumentFragment Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextDocumentFragment Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextDocumentFragment Object Already deleted!" ) ); } } @@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QTextDocumentFragment( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextDocumentFragment; + p->func = hbqt_gcRelease_QTextDocumentFragment; HB_TRACE( HB_TR_DEBUG, ( " new_QTextDocumentFragment %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp b/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp index e76bb389bf..1f6c83428f 100644 --- a/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp @@ -78,22 +78,22 @@ * ~QTextDocumentWriter () */ -QT_G_FUNC( release_QTextDocumentWriter ) +QT_G_FUNC( hbqt_gcRelease_QTextDocumentWriter ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocumentWriter p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextDocumentWriter ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocumentWriter p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextDocumentWriter ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextDocumentWriter * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextDocumentWriter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextDocumentWriter Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextDocumentWriter Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextDocumentWriter Object Already deleted!" ) ); } } @@ -102,7 +102,7 @@ void * hbqt_gcAllocate_QTextDocumentWriter( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextDocumentWriter; + p->func = hbqt_gcRelease_QTextDocumentWriter; HB_TRACE( HB_TR_DEBUG, ( " new_QTextDocumentWriter %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextEdit.cpp b/harbour/contrib/hbqt/qtgui/QTextEdit.cpp index 7940825f52..78c31df4e5 100644 --- a/harbour/contrib/hbqt/qtgui/QTextEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextEdit.cpp @@ -99,12 +99,12 @@ typedef struct QPointer< QTextEdit > pq; } QGC_POINTER_QTextEdit; -QT_G_FUNC( release_QTextEdit ) +QT_G_FUNC( hbqt_gcRelease_QTextEdit ) { QGC_POINTER_QTextEdit * p = ( QGC_POINTER_QTextEdit * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextEdit p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextEdit p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -124,16 +124,16 @@ QT_G_FUNC( release_QTextEdit ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTextEdit Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTextEdit Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextEdit Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextEdit Object Already deleted!" ) ); } } @@ -142,7 +142,7 @@ void * hbqt_gcAllocate_QTextEdit( void * pObj ) QGC_POINTER_QTextEdit * p = ( QGC_POINTER_QTextEdit * ) hb_gcAllocate( sizeof( QGC_POINTER_QTextEdit ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextEdit; + p->func = hbqt_gcRelease_QTextEdit; new( & p->pq ) QPointer< QTextEdit >( ( QTextEdit * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTextEdit %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTextFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextFormat.cpp index 58480c2223..8aa5492b9b 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFormat.cpp @@ -101,22 +101,22 @@ * ~QTextFormat () */ -QT_G_FUNC( release_QTextFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextFormat Object Already deleted!" ) ); } } @@ -125,7 +125,7 @@ void * hbqt_gcAllocate_QTextFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextFormat; + p->func = hbqt_gcRelease_QTextFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextFragment.cpp b/harbour/contrib/hbqt/qtgui/QTextFragment.cpp index a54e0ee207..df9135f745 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFragment.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFragment.cpp @@ -76,22 +76,22 @@ * QTextFragment ( const QTextFragment & other ) */ -QT_G_FUNC( release_QTextFragment ) +QT_G_FUNC( hbqt_gcRelease_QTextFragment ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFragment p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFragment ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFragment p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFragment ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextFragment * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextFragment Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextFragment Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextFragment Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextFragment Object Already deleted!" ) ); } } @@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QTextFragment( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextFragment; + p->func = hbqt_gcRelease_QTextFragment; HB_TRACE( HB_TR_DEBUG, ( " new_QTextFragment %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextFrame.cpp b/harbour/contrib/hbqt/qtgui/QTextFrame.cpp index a2383e80f2..6145f2a09e 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFrame.cpp @@ -98,12 +98,12 @@ typedef struct QPointer< QTextFrame > pq; } QGC_POINTER_QTextFrame; -QT_G_FUNC( release_QTextFrame ) +QT_G_FUNC( hbqt_gcRelease_QTextFrame ) { QGC_POINTER_QTextFrame * p = ( QGC_POINTER_QTextFrame * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFrame p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFrame ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFrame p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFrame ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -123,16 +123,16 @@ QT_G_FUNC( release_QTextFrame ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFrame Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTextFrame Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTextFrame Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextFrame Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextFrame Object Already deleted!" ) ); } } @@ -141,7 +141,7 @@ void * hbqt_gcAllocate_QTextFrame( void * pObj ) QGC_POINTER_QTextFrame * p = ( QGC_POINTER_QTextFrame * ) hb_gcAllocate( sizeof( QGC_POINTER_QTextFrame ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextFrame; + p->func = hbqt_gcRelease_QTextFrame; new( & p->pq ) QPointer< QTextFrame >( ( QTextFrame * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTextFrame %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp index 9d3659377a..5b204d0b9b 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp @@ -85,22 +85,22 @@ * QTextFrameFormat () */ -QT_G_FUNC( release_QTextFrameFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextFrameFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFrameFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextFrameFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFrameFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextFrameFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextFrameFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextFrameFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextFrameFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextFrameFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextFrameFormat Object Already deleted!" ) ); } } @@ -109,7 +109,7 @@ void * hbqt_gcAllocate_QTextFrameFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextFrameFormat; + p->func = hbqt_gcRelease_QTextFrameFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextFrameFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp index 4c8cfbd159..db9854f19a 100644 --- a/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp @@ -76,22 +76,22 @@ * */ -QT_G_FUNC( release_QTextImageFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextImageFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextImageFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextImageFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextImageFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextImageFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextImageFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextImageFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextImageFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextImageFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextImageFormat Object Already deleted!" ) ); } } @@ -100,7 +100,7 @@ void * hbqt_gcAllocate_QTextImageFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextImageFormat; + p->func = hbqt_gcRelease_QTextImageFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextImageFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp b/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp index 6cb2bece23..0d4ab32681 100644 --- a/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp @@ -76,7 +76,7 @@ * */ -QT_G_FUNC( release_QTextInlineObject ) +QT_G_FUNC( hbqt_gcRelease_QTextInlineObject ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextItem.cpp b/harbour/contrib/hbqt/qtgui/QTextItem.cpp index facea9a3de..67d30b5649 100644 --- a/harbour/contrib/hbqt/qtgui/QTextItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextItem.cpp @@ -81,22 +81,22 @@ * */ -QT_G_FUNC( release_QTextItem ) +QT_G_FUNC( hbqt_gcRelease_QTextItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextItem Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QTextItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextItem; + p->func = hbqt_gcRelease_QTextItem; HB_TRACE( HB_TR_DEBUG, ( " new_QTextItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextLayout.cpp b/harbour/contrib/hbqt/qtgui/QTextLayout.cpp index 6a6d54093e..06a58eb3bd 100644 --- a/harbour/contrib/hbqt/qtgui/QTextLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextLayout.cpp @@ -93,22 +93,22 @@ * ~QTextLayout () */ -QT_G_FUNC( release_QTextLayout ) +QT_G_FUNC( hbqt_gcRelease_QTextLayout ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextLayout p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextLayout ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextLayout p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextLayout ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextLayout * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextLayout Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextLayout Object Already deleted!" ) ); } } @@ -117,7 +117,7 @@ void * hbqt_gcAllocate_QTextLayout( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextLayout; + p->func = hbqt_gcRelease_QTextLayout; HB_TRACE( HB_TR_DEBUG, ( " new_QTextLayout %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextLength.cpp b/harbour/contrib/hbqt/qtgui/QTextLength.cpp index a8004a1147..52673a246f 100644 --- a/harbour/contrib/hbqt/qtgui/QTextLength.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextLength.cpp @@ -80,22 +80,22 @@ * QTextLength ( Type type, qreal value ) */ -QT_G_FUNC( release_QTextLength ) +QT_G_FUNC( hbqt_gcRelease_QTextLength ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextLength p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextLength ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextLength p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextLength ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextLength * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextLength Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextLength Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextLength Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextLength Object Already deleted!" ) ); } } @@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QTextLength( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextLength; + p->func = hbqt_gcRelease_QTextLength; HB_TRACE( HB_TR_DEBUG, ( " new_QTextLength %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextLine.cpp b/harbour/contrib/hbqt/qtgui/QTextLine.cpp index 6cf039f4ed..152390b13a 100644 --- a/harbour/contrib/hbqt/qtgui/QTextLine.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextLine.cpp @@ -80,22 +80,22 @@ * QTextLine () */ -QT_G_FUNC( release_QTextLine ) +QT_G_FUNC( hbqt_gcRelease_QTextLine ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextLine p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextLine ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextLine p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextLine ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextLine * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextLine Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextLine Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextLine Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextLine Object Already deleted!" ) ); } } @@ -104,7 +104,7 @@ void * hbqt_gcAllocate_QTextLine( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextLine; + p->func = hbqt_gcRelease_QTextLine; HB_TRACE( HB_TR_DEBUG, ( " new_QTextLine %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp index 02a1881158..f4a0bc3bd0 100644 --- a/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp @@ -79,22 +79,22 @@ * */ -QT_G_FUNC( release_QTextListFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextListFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextListFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextListFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextListFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextListFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextListFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextListFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextListFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextListFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextListFormat Object Already deleted!" ) ); } } @@ -103,7 +103,7 @@ void * hbqt_gcAllocate_QTextListFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextListFormat; + p->func = hbqt_gcRelease_QTextListFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextListFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextObject.cpp b/harbour/contrib/hbqt/qtgui/QTextObject.cpp index bcd79937ef..aceca2a613 100644 --- a/harbour/contrib/hbqt/qtgui/QTextObject.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextObject.cpp @@ -75,7 +75,7 @@ * */ -QT_G_FUNC( release_QTextObject ) +QT_G_FUNC( hbqt_gcRelease_QTextObject ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextOption.cpp b/harbour/contrib/hbqt/qtgui/QTextOption.cpp index 2b1a990a74..543295bc8a 100644 --- a/harbour/contrib/hbqt/qtgui/QTextOption.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextOption.cpp @@ -97,22 +97,22 @@ * ~QTextOption () */ -QT_G_FUNC( release_QTextOption ) +QT_G_FUNC( hbqt_gcRelease_QTextOption ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextOption p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextOption ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextOption p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextOption ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextOption * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextOption Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextOption Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextOption Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextOption Object Already deleted!" ) ); } } @@ -121,7 +121,7 @@ void * hbqt_gcAllocate_QTextOption( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextOption; + p->func = hbqt_gcRelease_QTextOption; HB_TRACE( HB_TR_DEBUG, ( " new_QTextOption %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp index b7855c710a..659625fc8b 100644 --- a/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp @@ -84,22 +84,22 @@ /* QTextTableFormat () */ -QT_G_FUNC( release_QTextTableFormat ) +QT_G_FUNC( hbqt_gcRelease_QTextTableFormat ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTextTableFormat p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTextTableFormat ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextTableFormat p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTextTableFormat ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTextTableFormat * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTextTableFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTextTableFormat Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTextTableFormat Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTextTableFormat Object Already deleted!" ) ); } } @@ -108,7 +108,7 @@ void * hbqt_gcAllocate_QTextTableFormat( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTextTableFormat; + p->func = hbqt_gcRelease_QTextTableFormat; HB_TRACE( HB_TR_DEBUG, ( " new_QTextTableFormat %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp b/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp index 54f7604914..aa995f61f1 100644 --- a/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QTimeEdit > pq; } QGC_POINTER_QTimeEdit; -QT_G_FUNC( release_QTimeEdit ) +QT_G_FUNC( hbqt_gcRelease_QTimeEdit ) { QGC_POINTER_QTimeEdit * p = ( QGC_POINTER_QTimeEdit * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTimeEdit p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTimeEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTimeEdit p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTimeEdit ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QTimeEdit ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTimeEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTimeEdit Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTimeEdit Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTimeEdit Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTimeEdit Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTimeEdit Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QTimeEdit( void * pObj ) QGC_POINTER_QTimeEdit * p = ( QGC_POINTER_QTimeEdit * ) hb_gcAllocate( sizeof( QGC_POINTER_QTimeEdit ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTimeEdit; + p->func = hbqt_gcRelease_QTimeEdit; new( & p->pq ) QPointer< QTimeEdit >( ( QTimeEdit * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTimeEdit %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QToolBar.cpp b/harbour/contrib/hbqt/qtgui/QToolBar.cpp index 67b6b06a4f..5eeb2ffd36 100644 --- a/harbour/contrib/hbqt/qtgui/QToolBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QToolBar.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QToolBar > pq; } QGC_POINTER_QToolBar; -QT_G_FUNC( release_QToolBar ) +QT_G_FUNC( hbqt_gcRelease_QToolBar ) { QGC_POINTER_QToolBar * p = ( QGC_POINTER_QToolBar * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QToolBar p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QToolBar ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolBar p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolBar ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QToolBar ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QToolBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolBar Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QToolBar Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QToolBar Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QToolBar Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QToolBar Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QToolBar( void * pObj ) QGC_POINTER_QToolBar * p = ( QGC_POINTER_QToolBar * ) hb_gcAllocate( sizeof( QGC_POINTER_QToolBar ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QToolBar; + p->func = hbqt_gcRelease_QToolBar; new( & p->pq ) QPointer< QToolBar >( ( QToolBar * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QToolBar %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QToolBox.cpp b/harbour/contrib/hbqt/qtgui/QToolBox.cpp index 4c444b674f..b825ca88b9 100644 --- a/harbour/contrib/hbqt/qtgui/QToolBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QToolBox.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QToolBox > pq; } QGC_POINTER_QToolBox; -QT_G_FUNC( release_QToolBox ) +QT_G_FUNC( hbqt_gcRelease_QToolBox ) { QGC_POINTER_QToolBox * p = ( QGC_POINTER_QToolBox * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QToolBox p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QToolBox ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolBox p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolBox ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QToolBox ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QToolBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolBox Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QToolBox Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QToolBox Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QToolBox Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QToolBox Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QToolBox( void * pObj ) QGC_POINTER_QToolBox * p = ( QGC_POINTER_QToolBox * ) hb_gcAllocate( sizeof( QGC_POINTER_QToolBox ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QToolBox; + p->func = hbqt_gcRelease_QToolBox; new( & p->pq ) QPointer< QToolBox >( ( QToolBox * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QToolBox %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QToolButton.cpp b/harbour/contrib/hbqt/qtgui/QToolButton.cpp index 4840168741..c1b00d546f 100644 --- a/harbour/contrib/hbqt/qtgui/QToolButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QToolButton.cpp @@ -87,12 +87,12 @@ typedef struct QPointer< QToolButton > pq; } QGC_POINTER_QToolButton; -QT_G_FUNC( release_QToolButton ) +QT_G_FUNC( hbqt_gcRelease_QToolButton ) { QGC_POINTER_QToolButton * p = ( QGC_POINTER_QToolButton * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QToolButton p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QToolButton ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolButton p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolButton ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -112,16 +112,16 @@ QT_G_FUNC( release_QToolButton ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QToolButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QToolButton Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QToolButton Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QToolButton Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QToolButton Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QToolButton Object Already deleted!" ) ); } } @@ -130,7 +130,7 @@ void * hbqt_gcAllocate_QToolButton( void * pObj ) QGC_POINTER_QToolButton * p = ( QGC_POINTER_QToolButton * ) hb_gcAllocate( sizeof( QGC_POINTER_QToolButton ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QToolButton; + p->func = hbqt_gcRelease_QToolButton; new( & p->pq ) QPointer< QToolButton >( ( QToolButton * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QToolButton %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTransform.cpp b/harbour/contrib/hbqt/qtgui/QTransform.cpp index 2351224670..332f38b8f5 100644 --- a/harbour/contrib/hbqt/qtgui/QTransform.cpp +++ b/harbour/contrib/hbqt/qtgui/QTransform.cpp @@ -81,22 +81,22 @@ * QTransform ( const QMatrix & matrix ) */ -QT_G_FUNC( release_QTransform ) +QT_G_FUNC( hbqt_gcRelease_QTransform ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTransform p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTransform ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTransform p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTransform ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTransform * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTransform Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTransform Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTransform Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTransform Object Already deleted!" ) ); } } @@ -105,7 +105,7 @@ void * hbqt_gcAllocate_QTransform( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTransform; + p->func = hbqt_gcRelease_QTransform; HB_TRACE( HB_TR_DEBUG, ( " new_QTransform %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QTreeView.cpp b/harbour/contrib/hbqt/qtgui/QTreeView.cpp index 94e7bc6c38..34765b4afd 100644 --- a/harbour/contrib/hbqt/qtgui/QTreeView.cpp +++ b/harbour/contrib/hbqt/qtgui/QTreeView.cpp @@ -95,12 +95,12 @@ typedef struct QPointer< QTreeView > pq; } QGC_POINTER_QTreeView; -QT_G_FUNC( release_QTreeView ) +QT_G_FUNC( hbqt_gcRelease_QTreeView ) { QGC_POINTER_QTreeView * p = ( QGC_POINTER_QTreeView * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeView p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeView ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeView p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeView ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -120,16 +120,16 @@ QT_G_FUNC( release_QTreeView ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeView Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTreeView Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTreeView Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTreeView Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTreeView Object Already deleted!" ) ); } } @@ -138,7 +138,7 @@ void * hbqt_gcAllocate_QTreeView( void * pObj ) QGC_POINTER_QTreeView * p = ( QGC_POINTER_QTreeView * ) hb_gcAllocate( sizeof( QGC_POINTER_QTreeView ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTreeView; + p->func = hbqt_gcRelease_QTreeView; new( & p->pq ) QPointer< QTreeView >( ( QTreeView * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTreeView %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp b/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp index 1227fcaa4c..883370cf0e 100644 --- a/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp @@ -95,12 +95,12 @@ typedef struct QPointer< QTreeWidget > pq; } QGC_POINTER_QTreeWidget; -QT_G_FUNC( release_QTreeWidget ) +QT_G_FUNC( hbqt_gcRelease_QTreeWidget ) { QGC_POINTER_QTreeWidget * p = ( QGC_POINTER_QTreeWidget * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeWidget p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeWidget p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -120,16 +120,16 @@ QT_G_FUNC( release_QTreeWidget ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QTreeWidget Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QTreeWidget Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTreeWidget Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTreeWidget Object Already deleted!" ) ); } } @@ -138,7 +138,7 @@ void * hbqt_gcAllocate_QTreeWidget( void * pObj ) QGC_POINTER_QTreeWidget * p = ( QGC_POINTER_QTreeWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QTreeWidget ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTreeWidget; + p->func = hbqt_gcRelease_QTreeWidget; new( & p->pq ) QPointer< QTreeWidget >( ( QTreeWidget * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QTreeWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp index b523fb4182..9ee88d270d 100644 --- a/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp @@ -100,22 +100,22 @@ * virtual ~QTreeWidgetItem () */ -QT_G_FUNC( release_QTreeWidgetItem ) +QT_G_FUNC( hbqt_gcRelease_QTreeWidgetItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeWidgetItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QTreeWidgetItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeWidgetItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QTreeWidgetItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QTreeWidgetItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QTreeWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QTreeWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QTreeWidgetItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QTreeWidgetItem Object Already deleted!" ) ); } } @@ -124,7 +124,7 @@ void * hbqt_gcAllocate_QTreeWidgetItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QTreeWidgetItem; + p->func = hbqt_gcRelease_QTreeWidgetItem; HB_TRACE( HB_TR_DEBUG, ( " new_QTreeWidgetItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp b/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp index 16db598fff..02adbd46b5 100644 --- a/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QVBoxLayout > pq; } QGC_POINTER_QVBoxLayout; -QT_G_FUNC( release_QVBoxLayout ) +QT_G_FUNC( hbqt_gcRelease_QVBoxLayout ) { QGC_POINTER_QVBoxLayout * p = ( QGC_POINTER_QVBoxLayout * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QVBoxLayout p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QVBoxLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QVBoxLayout p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QVBoxLayout ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QVBoxLayout ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QVBoxLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QVBoxLayout Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QVBoxLayout Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QVBoxLayout Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QVBoxLayout Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QVBoxLayout Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QVBoxLayout( void * pObj ) QGC_POINTER_QVBoxLayout * p = ( QGC_POINTER_QVBoxLayout * ) hb_gcAllocate( sizeof( QGC_POINTER_QVBoxLayout ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QVBoxLayout; + p->func = hbqt_gcRelease_QVBoxLayout; new( & p->pq ) QPointer< QVBoxLayout >( ( QVBoxLayout * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QVBoxLayout %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QValidator.cpp b/harbour/contrib/hbqt/qtgui/QValidator.cpp index f8da620b3e..4dbd972332 100644 --- a/harbour/contrib/hbqt/qtgui/QValidator.cpp +++ b/harbour/contrib/hbqt/qtgui/QValidator.cpp @@ -79,7 +79,7 @@ * ~QValidator () */ -QT_G_FUNC( release_QValidator ) +QT_G_FUNC( hbqt_gcRelease_QValidator ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp b/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp index 7b9191802a..cea886a132 100644 --- a/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp @@ -76,7 +76,7 @@ * QWheelEvent ( const QPoint & pos, const QPoint & globalPos, int delta, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Qt::Orientation orient = Qt::Vertical ) */ -QT_G_FUNC( release_QWheelEvent ) +QT_G_FUNC( hbqt_gcRelease_QWheelEvent ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtgui/QWidget.cpp b/harbour/contrib/hbqt/qtgui/QWidget.cpp index 842866f402..87cdf95ce5 100644 --- a/harbour/contrib/hbqt/qtgui/QWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QWidget.cpp @@ -121,12 +121,12 @@ typedef struct QPointer< QWidget > pq; } QGC_POINTER_QWidget; -QT_G_FUNC( release_QWidget ) +QT_G_FUNC( hbqt_gcRelease_QWidget ) { QGC_POINTER_QWidget * p = ( QGC_POINTER_QWidget * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QWidget p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidget p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidget ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -146,16 +146,16 @@ QT_G_FUNC( release_QWidget ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidget Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QWidget Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QWidget Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QWidget Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QWidget Object Already deleted!" ) ); } } @@ -164,7 +164,7 @@ void * hbqt_gcAllocate_QWidget( void * pObj ) QGC_POINTER_QWidget * p = ( QGC_POINTER_QWidget * ) hb_gcAllocate( sizeof( QGC_POINTER_QWidget ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QWidget; + p->func = hbqt_gcRelease_QWidget; new( & p->pq ) QPointer< QWidget >( ( QWidget * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QWidget %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp b/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp index 9457e21413..70ebbda269 100644 --- a/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp +++ b/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp @@ -83,12 +83,12 @@ typedef struct QPointer< QWidgetAction > pq; } QGC_POINTER_QWidgetAction; -QT_G_FUNC( release_QWidgetAction ) +QT_G_FUNC( hbqt_gcRelease_QWidgetAction ) { QGC_POINTER_QWidgetAction * p = ( QGC_POINTER_QWidgetAction * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QWidgetAction p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QWidgetAction ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidgetAction p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidgetAction ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -108,16 +108,16 @@ QT_G_FUNC( release_QWidgetAction ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QWidgetAction Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidgetAction Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QWidgetAction Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QWidgetAction Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QWidgetAction Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QWidgetAction Object Already deleted!" ) ); } } @@ -126,7 +126,7 @@ void * hbqt_gcAllocate_QWidgetAction( void * pObj ) QGC_POINTER_QWidgetAction * p = ( QGC_POINTER_QWidgetAction * ) hb_gcAllocate( sizeof( QGC_POINTER_QWidgetAction ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QWidgetAction; + p->func = hbqt_gcRelease_QWidgetAction; new( & p->pq ) QPointer< QWidgetAction >( ( QWidgetAction * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QWidgetAction %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp index 55e84446f5..fb47d2256e 100644 --- a/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp @@ -75,22 +75,22 @@ * QWidgetItem ( QWidget * widget ) */ -QT_G_FUNC( release_QWidgetItem ) +QT_G_FUNC( hbqt_gcRelease_QWidgetItem ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QWidgetItem p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QWidgetItem ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidgetItem p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWidgetItem ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QWidgetItem * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QWidgetItem Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QWidgetItem Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QWidgetItem Object Already deleted!" ) ); } } @@ -99,7 +99,7 @@ void * hbqt_gcAllocate_QWidgetItem( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QWidgetItem; + p->func = hbqt_gcRelease_QWidgetItem; HB_TRACE( HB_TR_DEBUG, ( " new_QWidgetItem %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp b/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp index e4a8f2068a..9ab6af48a3 100644 --- a/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp +++ b/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp @@ -84,12 +84,12 @@ typedef struct QPointer< QWindowsStyle > pq; } QGC_POINTER_QWindowsStyle; -QT_G_FUNC( release_QWindowsStyle ) +QT_G_FUNC( hbqt_gcRelease_QWindowsStyle ) { QGC_POINTER_QWindowsStyle * p = ( QGC_POINTER_QWindowsStyle * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QWindowsStyle p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QWindowsStyle ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWindowsStyle p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWindowsStyle ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -109,16 +109,16 @@ QT_G_FUNC( release_QWindowsStyle ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QWindowsStyle Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWindowsStyle Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QWindowsStyle Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QWindowsStyle Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QWindowsStyle Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QWindowsStyle Object Already deleted!" ) ); } } @@ -127,7 +127,7 @@ void * hbqt_gcAllocate_QWindowsStyle( void * pObj ) QGC_POINTER_QWindowsStyle * p = ( QGC_POINTER_QWindowsStyle * ) hb_gcAllocate( sizeof( QGC_POINTER_QWindowsStyle ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QWindowsStyle; + p->func = hbqt_gcRelease_QWindowsStyle; new( & p->pq ) QPointer< QWindowsStyle >( ( QWindowsStyle * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QWindowsStyle %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QWizard.cpp b/harbour/contrib/hbqt/qtgui/QWizard.cpp index 4f4f13162d..f59e2acf21 100644 --- a/harbour/contrib/hbqt/qtgui/QWizard.cpp +++ b/harbour/contrib/hbqt/qtgui/QWizard.cpp @@ -103,12 +103,12 @@ typedef struct QPointer< QWizard > pq; } QGC_POINTER_QWizard; -QT_G_FUNC( release_QWizard ) +QT_G_FUNC( hbqt_gcRelease_QWizard ) { QGC_POINTER_QWizard * p = ( QGC_POINTER_QWizard * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QWizard p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QWizard ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWizard p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWizard ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -128,16 +128,16 @@ QT_G_FUNC( release_QWizard ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QWizard Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWizard Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QWizard Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QWizard Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QWizard Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QWizard Object Already deleted!" ) ); } } @@ -146,7 +146,7 @@ void * hbqt_gcAllocate_QWizard( void * pObj ) QGC_POINTER_QWizard * p = ( QGC_POINTER_QWizard * ) hb_gcAllocate( sizeof( QGC_POINTER_QWizard ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QWizard; + p->func = hbqt_gcRelease_QWizard; new( & p->pq ) QPointer< QWizard >( ( QWizard * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QWizard %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtgui/QWizardPage.cpp b/harbour/contrib/hbqt/qtgui/QWizardPage.cpp index ac24ccfde4..9e72bd0445 100644 --- a/harbour/contrib/hbqt/qtgui/QWizardPage.cpp +++ b/harbour/contrib/hbqt/qtgui/QWizardPage.cpp @@ -81,12 +81,12 @@ typedef struct QPointer< QWizardPage > pq; } QGC_POINTER_QWizardPage; -QT_G_FUNC( release_QWizardPage ) +QT_G_FUNC( hbqt_gcRelease_QWizardPage ) { QGC_POINTER_QWizardPage * p = ( QGC_POINTER_QWizardPage * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QWizardPage p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QWizardPage ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWizardPage p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWizardPage ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -106,16 +106,16 @@ QT_G_FUNC( release_QWizardPage ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QWizardPage Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QWizardPage Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QWizardPage Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QWizardPage Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QWizardPage Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QWizardPage Object Already deleted!" ) ); } } @@ -124,7 +124,7 @@ void * hbqt_gcAllocate_QWizardPage( void * pObj ) QGC_POINTER_QWizardPage * p = ( QGC_POINTER_QWizardPage * ) hb_gcAllocate( sizeof( QGC_POINTER_QWizardPage ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QWizardPage; + p->func = hbqt_gcRelease_QWizardPage; new( & p->pq ) QPointer< QWizardPage >( ( QWizardPage * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QWizardPage %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qth/QApplication.qth b/harbour/contrib/hbqt/qth/QApplication.qth index a572985e18..ef65a1edb8 100644 --- a/harbour/contrib/hbqt/qth/QApplication.qth +++ b/harbour/contrib/hbqt/qth/QApplication.qth @@ -78,10 +78,10 @@ New = #include #include -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; @@ -97,7 +97,7 @@ static char ** s_argv; HB_FUNC( QT_QAPPLICATION ) { - hb_retptr( ( QApplication * ) app ); + hb_retptr( ( QApplication * ) s_app ); } static void hbqt_Exit( void * cargo ) @@ -114,12 +114,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 ); @@ -140,12 +140,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(); } diff --git a/harbour/contrib/hbqt/qtnetwork/QFtp.cpp b/harbour/contrib/hbqt/qtnetwork/QFtp.cpp index 36fa34a656..2f8ea6d656 100644 --- a/harbour/contrib/hbqt/qtnetwork/QFtp.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QFtp.cpp @@ -106,12 +106,12 @@ typedef struct QPointer< QFtp > pq; } QGC_POINTER_QFtp; -QT_G_FUNC( release_QFtp ) +QT_G_FUNC( hbqt_gcRelease_QFtp ) { QGC_POINTER_QFtp * p = ( QGC_POINTER_QFtp * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QFtp p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QFtp ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFtp p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFtp ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -131,16 +131,16 @@ QT_G_FUNC( release_QFtp ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QFtp Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QFtp Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QFtp Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QFtp Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QFtp Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QFtp Object Already deleted!" ) ); } } @@ -149,7 +149,7 @@ void * hbqt_gcAllocate_QFtp( void * pObj ) QGC_POINTER_QFtp * p = ( QGC_POINTER_QFtp * ) hb_gcAllocate( sizeof( QGC_POINTER_QFtp ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QFtp; + p->func = hbqt_gcRelease_QFtp; new( & p->pq ) QPointer< QFtp >( ( QFtp * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QFtp %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtnetwork/QHttp.cpp b/harbour/contrib/hbqt/qtnetwork/QHttp.cpp index e78f6c4385..a10aafbb78 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttp.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttp.cpp @@ -106,12 +106,12 @@ typedef struct QPointer< QHttp > pq; } QGC_POINTER_QHttp; -QT_G_FUNC( release_QHttp ) +QT_G_FUNC( hbqt_gcRelease_QHttp ) { QGC_POINTER_QHttp * p = ( QGC_POINTER_QHttp * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QHttp p=%p", p)); - HB_TRACE( HB_TR_DEBUG, ( "release_QHttp ph=%p pq=%p", p->ph, (void *)(p->pq))); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttp p=%p", p)); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttp ph=%p pq=%p", p->ph, (void *)(p->pq))); if( p && p->ph && p->pq ) { @@ -131,16 +131,16 @@ QT_G_FUNC( release_QHttp ) break; } p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "release_QHttp Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttp Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "NO release_QHttp Object Name Missing!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "NO hbqt_gcRelease_QHttp Object Name Missing!" ) ); } } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QHttp Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QHttp Object Already deleted!" ) ); } } @@ -149,7 +149,7 @@ void * hbqt_gcAllocate_QHttp( void * pObj ) QGC_POINTER_QHttp * p = ( QGC_POINTER_QHttp * ) hb_gcAllocate( sizeof( QGC_POINTER_QHttp ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QHttp; + p->func = hbqt_gcRelease_QHttp; new( & p->pq ) QPointer< QHttp >( ( QHttp * ) pObj ); HB_TRACE( HB_TR_DEBUG, ( " new_QHttp %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); diff --git a/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp b/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp index c624b45360..35fc29873c 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp @@ -87,7 +87,7 @@ * virtual ~QHttpHeader () */ -QT_G_FUNC( release_QHttpHeader ) +QT_G_FUNC( hbqt_gcRelease_QHttpHeader ) { HB_SYMBOL_UNUSED( Cargo ); } diff --git a/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp b/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp index 714a7124a1..a69adb19eb 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp @@ -77,22 +77,22 @@ * QHttpRequestHeader ( const QString & str ) */ -QT_G_FUNC( release_QHttpRequestHeader ) +QT_G_FUNC( hbqt_gcRelease_QHttpRequestHeader ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QHttpRequestHeader p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QHttpRequestHeader ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttpRequestHeader p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttpRequestHeader ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QHttpRequestHeader * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QHttpRequestHeader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QHttpRequestHeader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QHttpRequestHeader Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QHttpRequestHeader Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QHttpRequestHeader( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QHttpRequestHeader; + p->func = hbqt_gcRelease_QHttpRequestHeader; HB_TRACE( HB_TR_DEBUG, ( " new_QHttpRequestHeader %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp b/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp index aaa98c9ef5..60e6f00433 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp @@ -77,22 +77,22 @@ * QHttpResponseHeader ( int code, const QString & text = QString(), int majorVer = 1, int minorVer = 1 ) */ -QT_G_FUNC( release_QHttpResponseHeader ) +QT_G_FUNC( hbqt_gcRelease_QHttpResponseHeader ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QHttpResponseHeader p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QHttpResponseHeader ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttpResponseHeader p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QHttpResponseHeader ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QHttpResponseHeader * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QHttpResponseHeader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QHttpResponseHeader Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QHttpResponseHeader Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QHttpResponseHeader Object Already deleted!" ) ); } } @@ -101,7 +101,7 @@ void * hbqt_gcAllocate_QHttpResponseHeader( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QHttpResponseHeader; + p->func = hbqt_gcRelease_QHttpResponseHeader; HB_TRACE( HB_TR_DEBUG, ( " new_QHttpResponseHeader %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); } diff --git a/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp b/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp index 23f4200a1c..65748e1c10 100644 --- a/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp @@ -96,22 +96,22 @@ * ~QNetworkRequest () */ -QT_G_FUNC( release_QNetworkRequest ) +QT_G_FUNC( hbqt_gcRelease_QNetworkRequest ) { QGC_POINTER * p = ( QGC_POINTER * ) Cargo; - HB_TRACE( HB_TR_DEBUG, ( "release_QNetworkRequest p=%p", p ) ); - HB_TRACE( HB_TR_DEBUG, ( "release_QNetworkRequest ph=%p", p->ph ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QNetworkRequest p=%p", p ) ); + HB_TRACE( HB_TR_DEBUG, ( "hbqt_gcRelease_QNetworkRequest ph=%p", p->ph ) ); if( p && p->ph ) { delete ( ( QNetworkRequest * ) p->ph ); p->ph = NULL; - HB_TRACE( HB_TR_DEBUG, ( "YES release_QNetworkRequest Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); + HB_TRACE( HB_TR_DEBUG, ( "YES hbqt_gcRelease_QNetworkRequest Object deleted! %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); } else { - HB_TRACE( HB_TR_DEBUG, ( "DEL release_QNetworkRequest Object Already deleted!" ) ); + HB_TRACE( HB_TR_DEBUG, ( "DEL hbqt_gcRelease_QNetworkRequest Object Already deleted!" ) ); } } @@ -120,7 +120,7 @@ void * hbqt_gcAllocate_QNetworkRequest( void * pObj ) QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() ); p->ph = pObj; - p->func = release_QNetworkRequest; + p->func = hbqt_gcRelease_QNetworkRequest; HB_TRACE( HB_TR_DEBUG, ( " new_QNetworkRequest %i B %i KB", ( int ) hb_xquery( 1001 ), hbqt_getmemused() ) ); return( p ); }