diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d402d1dbb9..37b136e6d1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,21 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-01-14 02:47 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbqt/generator/hbqtgen.prg + * contrib/hbqt/qth/QSyntaxHighlighter.qth + * contrib/hbqt/hbqt_misc.prg + ! Synced method declaration with definition. + ; (I'm leaving hbxbp and gtwvg to Pritpal) + + * contrib/hbqt/qtgui/* + * contrib/hbqt/qtcore/* + * contrib/hbqt/qtnetwork/* + * Regenerated. + + * contrib/hbxbp/Makefile + * Sorted files alphabetically. + 2010-01-14 01:44 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/compiler/harbour.y * harbour/src/compiler/harbour.yyh diff --git a/harbour/contrib/hbqt/generator/hbqtgen.prg b/harbour/contrib/hbqt/generator/hbqtgen.prg index cae6b996aa..b68e99defd 100644 --- a/harbour/contrib/hbqt/generator/hbqtgen.prg +++ b/harbour/contrib/hbqt/generator/hbqtgen.prg @@ -1572,7 +1572,7 @@ STATIC FUNCTION Build_Class( cWidget, cls_, doc_, cPathOut, subCls_ ) aadd( txt_, ' ERROR HANDLER onError()' ) aadd( txt_, ' ' ) #endif - aadd( txt_, ' METHOD new()' ) + aadd( txt_, ' METHOD new( ... )' ) //aadd( txt_, ' METHOD configure( xObject )' ) aadd( txt_, ' ' ) diff --git a/harbour/contrib/hbqt/hbqt_misc.prg b/harbour/contrib/hbqt/hbqt_misc.prg index a0f93a351f..4db7123b25 100644 --- a/harbour/contrib/hbqt/hbqt_misc.prg +++ b/harbour/contrib/hbqt/hbqt_misc.prg @@ -60,7 +60,7 @@ CLASS HbQtObjectHandler VAR pPtr - METHOD configure() + METHOD configure( xObject ) ERROR HANDLER onError() diff --git a/harbour/contrib/hbqt/qtcore/TQAbstractItemModel.prg b/harbour/contrib/hbqt/qtcore/TQAbstractItemModel.prg index 4b605f83c3..1ab6e4c13b 100644 --- a/harbour/contrib/hbqt/qtcore/TQAbstractItemModel.prg +++ b/harbour/contrib/hbqt/qtcore/TQAbstractItemModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractItemModel INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD buddy( pIndex ) METHOD canFetchMore( pParent ) diff --git a/harbour/contrib/hbqt/qtcore/TQAbstractListModel.prg b/harbour/contrib/hbqt/qtcore/TQAbstractListModel.prg index 2530fbfe77..0ba6c99e22 100644 --- a/harbour/contrib/hbqt/qtcore/TQAbstractListModel.prg +++ b/harbour/contrib/hbqt/qtcore/TQAbstractListModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractListModel INHERIT HbQtObjectHandler, QAbstractItemModel - METHOD new() + METHOD new( ... ) METHOD index( nRow, nColumn, pParent ) diff --git a/harbour/contrib/hbqt/qtcore/TQAbstractTableModel.prg b/harbour/contrib/hbqt/qtcore/TQAbstractTableModel.prg index e7996e4a60..c1f5662e24 100644 --- a/harbour/contrib/hbqt/qtcore/TQAbstractTableModel.prg +++ b/harbour/contrib/hbqt/qtcore/TQAbstractTableModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractTableModel INHERIT HbQtObjectHandler, QAbstractItemModel - METHOD new() + METHOD new( ... ) METHOD index( nRow, nColumn, pParent ) diff --git a/harbour/contrib/hbqt/qtcore/TQBitArray.prg b/harbour/contrib/hbqt/qtcore/TQBitArray.prg index 1b48eba0fe..5b78a4a16a 100644 --- a/harbour/contrib/hbqt/qtcore/TQBitArray.prg +++ b/harbour/contrib/hbqt/qtcore/TQBitArray.prg @@ -65,7 +65,7 @@ CREATE CLASS QBitArray INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD at( nI ) METHOD clear() diff --git a/harbour/contrib/hbqt/qtcore/TQByteArray.prg b/harbour/contrib/hbqt/qtcore/TQByteArray.prg index b91ebcf298..f82044138d 100644 --- a/harbour/contrib/hbqt/qtcore/TQByteArray.prg +++ b/harbour/contrib/hbqt/qtcore/TQByteArray.prg @@ -65,7 +65,7 @@ CREATE CLASS QByteArray INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD append( pBa ) METHOD append_1( cStr ) diff --git a/harbour/contrib/hbqt/qtcore/TQCoreApplication.prg b/harbour/contrib/hbqt/qtcore/TQCoreApplication.prg index 52cdbc5975..39b3c5a908 100644 --- a/harbour/contrib/hbqt/qtcore/TQCoreApplication.prg +++ b/harbour/contrib/hbqt/qtcore/TQCoreApplication.prg @@ -65,7 +65,7 @@ CREATE CLASS QCoreApplication INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD notify( pReceiver, pEvent ) METHOD addLibraryPath( cPath ) diff --git a/harbour/contrib/hbqt/qtcore/TQDataStream.prg b/harbour/contrib/hbqt/qtcore/TQDataStream.prg index b6a90d2b8c..c7a2bf2f0c 100644 --- a/harbour/contrib/hbqt/qtcore/TQDataStream.prg +++ b/harbour/contrib/hbqt/qtcore/TQDataStream.prg @@ -65,7 +65,7 @@ CREATE CLASS QDataStream INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD atEnd() METHOD byteOrder() diff --git a/harbour/contrib/hbqt/qtcore/TQDate.prg b/harbour/contrib/hbqt/qtcore/TQDate.prg index d1ffc90878..85b1a95593 100644 --- a/harbour/contrib/hbqt/qtcore/TQDate.prg +++ b/harbour/contrib/hbqt/qtcore/TQDate.prg @@ -65,7 +65,7 @@ CREATE CLASS QDate INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD addDays( nNdays ) METHOD addMonths( nNmonths ) diff --git a/harbour/contrib/hbqt/qtcore/TQDateTime.prg b/harbour/contrib/hbqt/qtcore/TQDateTime.prg index 130477ebbe..7145fa3da6 100644 --- a/harbour/contrib/hbqt/qtcore/TQDateTime.prg +++ b/harbour/contrib/hbqt/qtcore/TQDateTime.prg @@ -65,7 +65,7 @@ CREATE CLASS QDateTime INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD addDays( nNdays ) METHOD addMSecs( nMsecs ) diff --git a/harbour/contrib/hbqt/qtcore/TQDir.prg b/harbour/contrib/hbqt/qtcore/TQDir.prg index 1630a407be..1afad43c8c 100644 --- a/harbour/contrib/hbqt/qtcore/TQDir.prg +++ b/harbour/contrib/hbqt/qtcore/TQDir.prg @@ -65,7 +65,7 @@ CREATE CLASS QDir INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD absoluteFilePath( cFileName ) METHOD absolutePath() diff --git a/harbour/contrib/hbqt/qtcore/TQEvent.prg b/harbour/contrib/hbqt/qtcore/TQEvent.prg index 6cc35d28df..c9d9b8a78c 100644 --- a/harbour/contrib/hbqt/qtcore/TQEvent.prg +++ b/harbour/contrib/hbqt/qtcore/TQEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QEvent INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD accept() METHOD ignore() diff --git a/harbour/contrib/hbqt/qtcore/TQEventLoop.prg b/harbour/contrib/hbqt/qtcore/TQEventLoop.prg index 3376067225..8aa8d0a653 100644 --- a/harbour/contrib/hbqt/qtcore/TQEventLoop.prg +++ b/harbour/contrib/hbqt/qtcore/TQEventLoop.prg @@ -65,7 +65,7 @@ CREATE CLASS QEventLoop INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD exec( nFlags ) METHOD exit( nReturnCode ) diff --git a/harbour/contrib/hbqt/qtcore/TQFile.prg b/harbour/contrib/hbqt/qtcore/TQFile.prg index 96fa6e4e09..598800231d 100644 --- a/harbour/contrib/hbqt/qtcore/TQFile.prg +++ b/harbour/contrib/hbqt/qtcore/TQFile.prg @@ -65,7 +65,7 @@ CREATE CLASS QFile INHERIT HbQtObjectHandler, QIODevice - METHOD new() + METHOD new( ... ) METHOD atEnd() METHOD close() diff --git a/harbour/contrib/hbqt/qtcore/TQFileInfo.prg b/harbour/contrib/hbqt/qtcore/TQFileInfo.prg index d04c95a7bf..a571ca1491 100644 --- a/harbour/contrib/hbqt/qtcore/TQFileInfo.prg +++ b/harbour/contrib/hbqt/qtcore/TQFileInfo.prg @@ -65,7 +65,7 @@ CREATE CLASS QFileInfo INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD absoluteDir() METHOD absoluteFilePath() diff --git a/harbour/contrib/hbqt/qtcore/TQIODevice.prg b/harbour/contrib/hbqt/qtcore/TQIODevice.prg index 2f7500d171..d9ec43717a 100644 --- a/harbour/contrib/hbqt/qtcore/TQIODevice.prg +++ b/harbour/contrib/hbqt/qtcore/TQIODevice.prg @@ -65,7 +65,7 @@ CREATE CLASS QIODevice INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD atEnd() METHOD bytesAvailable() diff --git a/harbour/contrib/hbqt/qtcore/TQLatin1Char.prg b/harbour/contrib/hbqt/qtcore/TQLatin1Char.prg index 69a9fe2924..d504898213 100644 --- a/harbour/contrib/hbqt/qtcore/TQLatin1Char.prg +++ b/harbour/contrib/hbqt/qtcore/TQLatin1Char.prg @@ -65,7 +65,7 @@ CREATE CLASS QLatin1Char INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD toLatin1() METHOD unicode() diff --git a/harbour/contrib/hbqt/qtcore/TQLatin1String.prg b/harbour/contrib/hbqt/qtcore/TQLatin1String.prg index 7cea306dcc..807c14f12f 100644 --- a/harbour/contrib/hbqt/qtcore/TQLatin1String.prg +++ b/harbour/contrib/hbqt/qtcore/TQLatin1String.prg @@ -65,7 +65,7 @@ CREATE CLASS QLatin1String INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD latin1() diff --git a/harbour/contrib/hbqt/qtcore/TQLine.prg b/harbour/contrib/hbqt/qtcore/TQLine.prg index 5f7fc186ba..a611e247ba 100644 --- a/harbour/contrib/hbqt/qtcore/TQLine.prg +++ b/harbour/contrib/hbqt/qtcore/TQLine.prg @@ -65,7 +65,7 @@ CREATE CLASS QLine INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD p1() METHOD p2() diff --git a/harbour/contrib/hbqt/qtcore/TQLineF.prg b/harbour/contrib/hbqt/qtcore/TQLineF.prg index e4ff53105d..99d913495d 100644 --- a/harbour/contrib/hbqt/qtcore/TQLineF.prg +++ b/harbour/contrib/hbqt/qtcore/TQLineF.prg @@ -65,7 +65,7 @@ CREATE CLASS QLineF INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD p1() METHOD p2() diff --git a/harbour/contrib/hbqt/qtcore/TQList.prg b/harbour/contrib/hbqt/qtcore/TQList.prg index c13f0c8c4f..80ff591486 100644 --- a/harbour/contrib/hbqt/qtcore/TQList.prg +++ b/harbour/contrib/hbqt/qtcore/TQList.prg @@ -65,7 +65,7 @@ CREATE CLASS QList INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD append( xValue ) METHOD at( nI ) diff --git a/harbour/contrib/hbqt/qtcore/TQLocale.prg b/harbour/contrib/hbqt/qtcore/TQLocale.prg index dba3123c20..bd12e257c3 100644 --- a/harbour/contrib/hbqt/qtcore/TQLocale.prg +++ b/harbour/contrib/hbqt/qtcore/TQLocale.prg @@ -65,7 +65,7 @@ CREATE CLASS QLocale INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD amText() METHOD country() diff --git a/harbour/contrib/hbqt/qtcore/TQMimeData.prg b/harbour/contrib/hbqt/qtcore/TQMimeData.prg index db923eb7a6..e60d7f14c0 100644 --- a/harbour/contrib/hbqt/qtcore/TQMimeData.prg +++ b/harbour/contrib/hbqt/qtcore/TQMimeData.prg @@ -65,7 +65,7 @@ CREATE CLASS QMimeData INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD clear() METHOD colorData() diff --git a/harbour/contrib/hbqt/qtcore/TQModelIndex.prg b/harbour/contrib/hbqt/qtcore/TQModelIndex.prg index 842117fefb..6916ea40c3 100644 --- a/harbour/contrib/hbqt/qtcore/TQModelIndex.prg +++ b/harbour/contrib/hbqt/qtcore/TQModelIndex.prg @@ -65,7 +65,7 @@ CREATE CLASS QModelIndex INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD child( nRow, nColumn ) METHOD column() diff --git a/harbour/contrib/hbqt/qtcore/TQObject.prg b/harbour/contrib/hbqt/qtcore/TQObject.prg index 3c8fc2ec84..c0bb4847ee 100644 --- a/harbour/contrib/hbqt/qtcore/TQObject.prg +++ b/harbour/contrib/hbqt/qtcore/TQObject.prg @@ -65,7 +65,7 @@ CREATE CLASS QObject INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD blockSignals( lBlock ) METHOD connect( pSender, pSignal, pMethod, nType ) diff --git a/harbour/contrib/hbqt/qtcore/TQPoint.prg b/harbour/contrib/hbqt/qtcore/TQPoint.prg index 25257dc342..95d6678069 100644 --- a/harbour/contrib/hbqt/qtcore/TQPoint.prg +++ b/harbour/contrib/hbqt/qtcore/TQPoint.prg @@ -65,7 +65,7 @@ CREATE CLASS QPoint INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD isNull() METHOD manhattanLength() diff --git a/harbour/contrib/hbqt/qtcore/TQPointF.prg b/harbour/contrib/hbqt/qtcore/TQPointF.prg index f7e4bfa7e7..50bcf3723e 100644 --- a/harbour/contrib/hbqt/qtcore/TQPointF.prg +++ b/harbour/contrib/hbqt/qtcore/TQPointF.prg @@ -65,7 +65,7 @@ CREATE CLASS QPointF INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD isNull() METHOD rx() diff --git a/harbour/contrib/hbqt/qtcore/TQProcess.prg b/harbour/contrib/hbqt/qtcore/TQProcess.prg index 6da8108206..d6c9c32573 100644 --- a/harbour/contrib/hbqt/qtcore/TQProcess.prg +++ b/harbour/contrib/hbqt/qtcore/TQProcess.prg @@ -65,7 +65,7 @@ CREATE CLASS QProcess INHERIT HbQtObjectHandler, QIODevice - METHOD new() + METHOD new( ... ) METHOD close() METHOD closeReadChannel( nChannel ) diff --git a/harbour/contrib/hbqt/qtcore/TQRect.prg b/harbour/contrib/hbqt/qtcore/TQRect.prg index 42324c6b6f..c18413f4ff 100644 --- a/harbour/contrib/hbqt/qtcore/TQRect.prg +++ b/harbour/contrib/hbqt/qtcore/TQRect.prg @@ -65,7 +65,7 @@ CREATE CLASS QRect INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD adjust( nDx1, nDy1, nDx2, nDy2 ) METHOD adjusted( nDx1, nDy1, nDx2, nDy2 ) diff --git a/harbour/contrib/hbqt/qtcore/TQRectF.prg b/harbour/contrib/hbqt/qtcore/TQRectF.prg index 5388e2ae4f..387c5b59ec 100644 --- a/harbour/contrib/hbqt/qtcore/TQRectF.prg +++ b/harbour/contrib/hbqt/qtcore/TQRectF.prg @@ -65,7 +65,7 @@ CREATE CLASS QRectF INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD adjust( nDx1, nDy1, nDx2, nDy2 ) METHOD adjusted( nDx1, nDy1, nDx2, nDy2 ) diff --git a/harbour/contrib/hbqt/qtcore/TQRegExp.prg b/harbour/contrib/hbqt/qtcore/TQRegExp.prg index 2e75e70392..583d9ef357 100644 --- a/harbour/contrib/hbqt/qtcore/TQRegExp.prg +++ b/harbour/contrib/hbqt/qtcore/TQRegExp.prg @@ -65,7 +65,7 @@ CREATE CLASS QRegExp INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD cap( nNth ) METHOD capturedTexts() diff --git a/harbour/contrib/hbqt/qtcore/TQResource.prg b/harbour/contrib/hbqt/qtcore/TQResource.prg index f8dc157d28..126709fbc4 100644 --- a/harbour/contrib/hbqt/qtcore/TQResource.prg +++ b/harbour/contrib/hbqt/qtcore/TQResource.prg @@ -65,7 +65,7 @@ CREATE CLASS QResource INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD absoluteFilePath() METHOD data() diff --git a/harbour/contrib/hbqt/qtcore/TQSettings.prg b/harbour/contrib/hbqt/qtcore/TQSettings.prg index a75f3a3379..7c5f314793 100644 --- a/harbour/contrib/hbqt/qtcore/TQSettings.prg +++ b/harbour/contrib/hbqt/qtcore/TQSettings.prg @@ -65,7 +65,7 @@ CREATE CLASS QSettings INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD allKeys() METHOD applicationName() diff --git a/harbour/contrib/hbqt/qtcore/TQSignalMapper.prg b/harbour/contrib/hbqt/qtcore/TQSignalMapper.prg index 9f0a4615ba..2d9a278370 100644 --- a/harbour/contrib/hbqt/qtcore/TQSignalMapper.prg +++ b/harbour/contrib/hbqt/qtcore/TQSignalMapper.prg @@ -65,7 +65,7 @@ CREATE CLASS QSignalMapper INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD mapping( nId ) METHOD mapping_1( cId ) diff --git a/harbour/contrib/hbqt/qtcore/TQSize.prg b/harbour/contrib/hbqt/qtcore/TQSize.prg index ec1b1773df..56f926386e 100644 --- a/harbour/contrib/hbqt/qtcore/TQSize.prg +++ b/harbour/contrib/hbqt/qtcore/TQSize.prg @@ -65,7 +65,7 @@ CREATE CLASS QSize INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD height() METHOD isEmpty() diff --git a/harbour/contrib/hbqt/qtcore/TQSizeF.prg b/harbour/contrib/hbqt/qtcore/TQSizeF.prg index 1902f0fc11..5b51b6ad9d 100644 --- a/harbour/contrib/hbqt/qtcore/TQSizeF.prg +++ b/harbour/contrib/hbqt/qtcore/TQSizeF.prg @@ -65,7 +65,7 @@ CREATE CLASS QSizeF INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD boundedTo( pOtherSize ) METHOD expandedTo( pOtherSize ) diff --git a/harbour/contrib/hbqt/qtcore/TQStringList.prg b/harbour/contrib/hbqt/qtcore/TQStringList.prg index f56c4937ff..be43b8c92a 100644 --- a/harbour/contrib/hbqt/qtcore/TQStringList.prg +++ b/harbour/contrib/hbqt/qtcore/TQStringList.prg @@ -65,7 +65,7 @@ CREATE CLASS QStringList INHERIT HbQtObjectHandler, QList - METHOD new() + METHOD new( ... ) METHOD append( cValue ) METHOD filter( cStr, nCs ) diff --git a/harbour/contrib/hbqt/qtcore/TQTextBoundaryFinder.prg b/harbour/contrib/hbqt/qtcore/TQTextBoundaryFinder.prg index c739292a41..eb9db7f3ff 100644 --- a/harbour/contrib/hbqt/qtcore/TQTextBoundaryFinder.prg +++ b/harbour/contrib/hbqt/qtcore/TQTextBoundaryFinder.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextBoundaryFinder INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD boundaryReasons() METHOD isAtBoundary() diff --git a/harbour/contrib/hbqt/qtcore/TQTextCodec.prg b/harbour/contrib/hbqt/qtcore/TQTextCodec.prg index 8f5642b0df..26408b252b 100644 --- a/harbour/contrib/hbqt/qtcore/TQTextCodec.prg +++ b/harbour/contrib/hbqt/qtcore/TQTextCodec.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextCodec INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD canEncode( nCh ) METHOD canEncode_1( cS ) diff --git a/harbour/contrib/hbqt/qtcore/TQTextDecoder.prg b/harbour/contrib/hbqt/qtcore/TQTextDecoder.prg index 2f00fe1ef9..e14db397d6 100644 --- a/harbour/contrib/hbqt/qtcore/TQTextDecoder.prg +++ b/harbour/contrib/hbqt/qtcore/TQTextDecoder.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextDecoder INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD toUnicode( pChars, nLen ) diff --git a/harbour/contrib/hbqt/qtcore/TQTextEncoder.prg b/harbour/contrib/hbqt/qtcore/TQTextEncoder.prg index b5260ce3f2..b71285777f 100644 --- a/harbour/contrib/hbqt/qtcore/TQTextEncoder.prg +++ b/harbour/contrib/hbqt/qtcore/TQTextEncoder.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextEncoder INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD fromUnicode( cStr ) diff --git a/harbour/contrib/hbqt/qtcore/TQTextStream.prg b/harbour/contrib/hbqt/qtcore/TQTextStream.prg index 93470d455a..1190e00aa3 100644 --- a/harbour/contrib/hbqt/qtcore/TQTextStream.prg +++ b/harbour/contrib/hbqt/qtcore/TQTextStream.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextStream INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD atEnd() METHOD autoDetectUnicode() diff --git a/harbour/contrib/hbqt/qtcore/TQThread.prg b/harbour/contrib/hbqt/qtcore/TQThread.prg index ae3e9bee74..68b1ebb6fb 100644 --- a/harbour/contrib/hbqt/qtcore/TQThread.prg +++ b/harbour/contrib/hbqt/qtcore/TQThread.prg @@ -65,7 +65,7 @@ CREATE CLASS QThread INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD exit( nReturnCode ) METHOD isFinished() diff --git a/harbour/contrib/hbqt/qtcore/TQTime.prg b/harbour/contrib/hbqt/qtcore/TQTime.prg index 36f9666bdd..4c796056e7 100644 --- a/harbour/contrib/hbqt/qtcore/TQTime.prg +++ b/harbour/contrib/hbqt/qtcore/TQTime.prg @@ -65,7 +65,7 @@ CREATE CLASS QTime INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD addMSecs( nMs ) METHOD addSecs( nS ) diff --git a/harbour/contrib/hbqt/qtcore/TQTimer.prg b/harbour/contrib/hbqt/qtcore/TQTimer.prg index a012028357..b9f1cf544a 100644 --- a/harbour/contrib/hbqt/qtcore/TQTimer.prg +++ b/harbour/contrib/hbqt/qtcore/TQTimer.prg @@ -65,7 +65,7 @@ CREATE CLASS QTimer INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD interval() METHOD isActive() diff --git a/harbour/contrib/hbqt/qtcore/TQTranslator.prg b/harbour/contrib/hbqt/qtcore/TQTranslator.prg index 25ead4de8b..16f39d23ef 100644 --- a/harbour/contrib/hbqt/qtcore/TQTranslator.prg +++ b/harbour/contrib/hbqt/qtcore/TQTranslator.prg @@ -65,7 +65,7 @@ CREATE CLASS QTranslator INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD isEmpty() METHOD load( cFilename, cDirectory, cSearch_delimiters, cSuffix ) diff --git a/harbour/contrib/hbqt/qtcore/TQUiLoader.prg b/harbour/contrib/hbqt/qtcore/TQUiLoader.prg index ba96f3fa59..a98223463f 100644 --- a/harbour/contrib/hbqt/qtcore/TQUiLoader.prg +++ b/harbour/contrib/hbqt/qtcore/TQUiLoader.prg @@ -65,7 +65,7 @@ CREATE CLASS QUiLoader INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD addPluginPath( cPath ) METHOD availableLayouts() diff --git a/harbour/contrib/hbqt/qtcore/TQUrl.prg b/harbour/contrib/hbqt/qtcore/TQUrl.prg index 101fb68f83..fd7b558d59 100644 --- a/harbour/contrib/hbqt/qtcore/TQUrl.prg +++ b/harbour/contrib/hbqt/qtcore/TQUrl.prg @@ -65,7 +65,7 @@ CREATE CLASS QUrl INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD addEncodedQueryItem( pKey, pValue ) METHOD addQueryItem( cKey, cValue ) diff --git a/harbour/contrib/hbqt/qtcore/TQVariant.prg b/harbour/contrib/hbqt/qtcore/TQVariant.prg index 62acf57ed6..ba1ba8049c 100644 --- a/harbour/contrib/hbqt/qtcore/TQVariant.prg +++ b/harbour/contrib/hbqt/qtcore/TQVariant.prg @@ -65,7 +65,7 @@ CREATE CLASS QVariant INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD canConvert( nT ) METHOD canConvert_1( nT ) diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractButton.prg b/harbour/contrib/hbqt/qtgui/TQAbstractButton.prg index 13d797bfde..5816355863 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractButton INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD autoExclusive() METHOD autoRepeat() diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractItemDelegate.prg b/harbour/contrib/hbqt/qtgui/TQAbstractItemDelegate.prg index 7f6715cf35..33779518e1 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractItemDelegate.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractItemDelegate.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractItemDelegate INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD createEditor( pParent, pOption, pIndex ) METHOD editorEvent( pEvent, pModel, pOption, pIndex ) diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractItemView.prg b/harbour/contrib/hbqt/qtgui/TQAbstractItemView.prg index a656a4330c..b58f8a76df 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractItemView.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractItemView.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractItemView INHERIT HbQtObjectHandler, QAbstractScrollArea - METHOD new() + METHOD new( ... ) METHOD alternatingRowColors() METHOD autoScrollMargin() diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractPrintDialog.prg b/harbour/contrib/hbqt/qtgui/TQAbstractPrintDialog.prg index 819128fcb0..b213629625 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractPrintDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractPrintDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractPrintDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD exec() METHOD fromPage() diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractProxyModel.prg b/harbour/contrib/hbqt/qtgui/TQAbstractProxyModel.prg index 1d62b56235..25c459ffba 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractProxyModel.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractProxyModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractProxyModel INHERIT HbQtObjectHandler, QAbstractItemModel - METHOD new() + METHOD new( ... ) METHOD mapFromSource( pSourceIndex ) METHOD mapSelectionFromSource( pSourceSelection ) diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractScrollArea.prg b/harbour/contrib/hbqt/qtgui/TQAbstractScrollArea.prg index 65245cdbb4..9479d02dcc 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractScrollArea.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractScrollArea.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractScrollArea INHERIT HbQtObjectHandler, QFrame - METHOD new() + METHOD new( ... ) METHOD addScrollBarWidget( pWidget, nAlignment ) METHOD cornerWidget() diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractSlider.prg b/harbour/contrib/hbqt/qtgui/TQAbstractSlider.prg index 96ef59f405..e265db671f 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractSlider.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractSlider.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractSlider INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD hasTracking() METHOD invertedAppearance() diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractSpinBox.prg b/harbour/contrib/hbqt/qtgui/TQAbstractSpinBox.prg index 1973d0bda1..1cb358fb77 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractSpinBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractSpinBox INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD buttonSymbols() diff --git a/harbour/contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg b/harbour/contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg index e8543bd3ea..68f67c8d23 100644 --- a/harbour/contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QAbstractTextDocumentLayout INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD anchorAt( pPosition ) METHOD blockBoundingRect( pBlock ) diff --git a/harbour/contrib/hbqt/qtgui/TQAction.prg b/harbour/contrib/hbqt/qtgui/TQAction.prg index 1917469e7f..426e9def7d 100644 --- a/harbour/contrib/hbqt/qtgui/TQAction.prg +++ b/harbour/contrib/hbqt/qtgui/TQAction.prg @@ -65,7 +65,7 @@ CREATE CLASS QAction INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD actionGroup() METHOD activate( nEvent ) diff --git a/harbour/contrib/hbqt/qtgui/TQActionGroup.prg b/harbour/contrib/hbqt/qtgui/TQActionGroup.prg index 3258d8e2df..aa6b4be551 100644 --- a/harbour/contrib/hbqt/qtgui/TQActionGroup.prg +++ b/harbour/contrib/hbqt/qtgui/TQActionGroup.prg @@ -65,7 +65,7 @@ CREATE CLASS QActionGroup INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD addAction( pAction ) METHOD addAction_1( cText ) diff --git a/harbour/contrib/hbqt/qtgui/TQApplication.prg b/harbour/contrib/hbqt/qtgui/TQApplication.prg index 4c917a4254..9b06ceb419 100644 --- a/harbour/contrib/hbqt/qtgui/TQApplication.prg +++ b/harbour/contrib/hbqt/qtgui/TQApplication.prg @@ -65,7 +65,7 @@ CREATE CLASS QApplication INHERIT HbQtObjectHandler, QCoreApplication - METHOD new() + METHOD new( ... ) METHOD commitData( pManager ) METHOD inputContext() diff --git a/harbour/contrib/hbqt/qtgui/TQBitmap.prg b/harbour/contrib/hbqt/qtgui/TQBitmap.prg index e9a3d026dd..aba79773a4 100644 --- a/harbour/contrib/hbqt/qtgui/TQBitmap.prg +++ b/harbour/contrib/hbqt/qtgui/TQBitmap.prg @@ -65,7 +65,7 @@ CREATE CLASS QBitmap INHERIT HbQtObjectHandler, QPixmap - METHOD new() + METHOD new( ... ) METHOD clear() METHOD transformed( pMatrix ) diff --git a/harbour/contrib/hbqt/qtgui/TQBoxLayout.prg b/harbour/contrib/hbqt/qtgui/TQBoxLayout.prg index 8369318374..927c09a851 100644 --- a/harbour/contrib/hbqt/qtgui/TQBoxLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQBoxLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QBoxLayout INHERIT HbQtObjectHandler, QLayout - METHOD new() + METHOD new( ... ) METHOD addLayout( pLayout, nStretch ) METHOD addSpacerItem( pSpacerItem ) diff --git a/harbour/contrib/hbqt/qtgui/TQBrush.prg b/harbour/contrib/hbqt/qtgui/TQBrush.prg index d83bd923c0..5199335619 100644 --- a/harbour/contrib/hbqt/qtgui/TQBrush.prg +++ b/harbour/contrib/hbqt/qtgui/TQBrush.prg @@ -65,7 +65,7 @@ CREATE CLASS QBrush INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD color() METHOD isOpaque() diff --git a/harbour/contrib/hbqt/qtgui/TQButtonGroup.prg b/harbour/contrib/hbqt/qtgui/TQButtonGroup.prg index 7e89cecca7..8b0f4b9d1a 100644 --- a/harbour/contrib/hbqt/qtgui/TQButtonGroup.prg +++ b/harbour/contrib/hbqt/qtgui/TQButtonGroup.prg @@ -65,7 +65,7 @@ CREATE CLASS QButtonGroup INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD addButton( pButton ) METHOD addButton_1( pButton, nId ) diff --git a/harbour/contrib/hbqt/qtgui/TQCalendarWidget.prg b/harbour/contrib/hbqt/qtgui/TQCalendarWidget.prg index 2d66d0ed63..7a5d57146d 100644 --- a/harbour/contrib/hbqt/qtgui/TQCalendarWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQCalendarWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QCalendarWidget INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD dateEditAcceptDelay() METHOD dateTextFormat( pDate ) diff --git a/harbour/contrib/hbqt/qtgui/TQCheckBox.prg b/harbour/contrib/hbqt/qtgui/TQCheckBox.prg index 3e83eab4a4..195037cae7 100644 --- a/harbour/contrib/hbqt/qtgui/TQCheckBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQCheckBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QCheckBox INHERIT HbQtObjectHandler, QAbstractButton - METHOD new() + METHOD new( ... ) METHOD checkState() METHOD isTristate() diff --git a/harbour/contrib/hbqt/qtgui/TQClipboard.prg b/harbour/contrib/hbqt/qtgui/TQClipboard.prg index eebfb07377..091404d03d 100644 --- a/harbour/contrib/hbqt/qtgui/TQClipboard.prg +++ b/harbour/contrib/hbqt/qtgui/TQClipboard.prg @@ -65,7 +65,7 @@ CREATE CLASS QClipboard INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD clear( nMode ) METHOD image( nMode ) diff --git a/harbour/contrib/hbqt/qtgui/TQColor.prg b/harbour/contrib/hbqt/qtgui/TQColor.prg index f641f20fc1..27d039b0c3 100644 --- a/harbour/contrib/hbqt/qtgui/TQColor.prg +++ b/harbour/contrib/hbqt/qtgui/TQColor.prg @@ -65,7 +65,7 @@ CREATE CLASS QColor INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD alpha() METHOD alphaF() diff --git a/harbour/contrib/hbqt/qtgui/TQColorDialog.prg b/harbour/contrib/hbqt/qtgui/TQColorDialog.prg index 1ac60de5ce..143063b29f 100644 --- a/harbour/contrib/hbqt/qtgui/TQColorDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQColorDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QColorDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD currentColor() METHOD open() diff --git a/harbour/contrib/hbqt/qtgui/TQComboBox.prg b/harbour/contrib/hbqt/qtgui/TQComboBox.prg index 5c0195bd52..d82612972d 100644 --- a/harbour/contrib/hbqt/qtgui/TQComboBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQComboBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QComboBox INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD addItem( cText, pUserData ) METHOD addItem_1( cIcon, cText, pUserData ) diff --git a/harbour/contrib/hbqt/qtgui/TQCommandLinkButton.prg b/harbour/contrib/hbqt/qtgui/TQCommandLinkButton.prg index b906820c09..16a9e59cf6 100644 --- a/harbour/contrib/hbqt/qtgui/TQCommandLinkButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQCommandLinkButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QCommandLinkButton INHERIT HbQtObjectHandler, QPushButton - METHOD new() + METHOD new( ... ) METHOD description() METHOD setDescription( cDescription ) diff --git a/harbour/contrib/hbqt/qtgui/TQCommonStyle.prg b/harbour/contrib/hbqt/qtgui/TQCommonStyle.prg index eba504fd35..ea9a3ead48 100644 --- a/harbour/contrib/hbqt/qtgui/TQCommonStyle.prg +++ b/harbour/contrib/hbqt/qtgui/TQCommonStyle.prg @@ -65,7 +65,7 @@ CREATE CLASS QCommonStyle INHERIT HbQtObjectHandler, QStyle - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQCompleter.prg b/harbour/contrib/hbqt/qtgui/TQCompleter.prg index 3d0b81891b..e8249a068f 100644 --- a/harbour/contrib/hbqt/qtgui/TQCompleter.prg +++ b/harbour/contrib/hbqt/qtgui/TQCompleter.prg @@ -65,7 +65,7 @@ CREATE CLASS QCompleter INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD caseSensitivity() METHOD completionColumn() diff --git a/harbour/contrib/hbqt/qtgui/TQConicalGradient.prg b/harbour/contrib/hbqt/qtgui/TQConicalGradient.prg index 0912efef22..29a3843f4b 100644 --- a/harbour/contrib/hbqt/qtgui/TQConicalGradient.prg +++ b/harbour/contrib/hbqt/qtgui/TQConicalGradient.prg @@ -65,7 +65,7 @@ CREATE CLASS QConicalGradient INHERIT HbQtObjectHandler, QGradient - METHOD new() + METHOD new( ... ) METHOD angle() METHOD center() diff --git a/harbour/contrib/hbqt/qtgui/TQContextMenuEvent.prg b/harbour/contrib/hbqt/qtgui/TQContextMenuEvent.prg index f0ecb25264..c237183050 100644 --- a/harbour/contrib/hbqt/qtgui/TQContextMenuEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQContextMenuEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QContextMenuEvent INHERIT HbQtObjectHandler, QInputEvent - METHOD new() + METHOD new( ... ) METHOD globalPos() METHOD globalX() diff --git a/harbour/contrib/hbqt/qtgui/TQCursor.prg b/harbour/contrib/hbqt/qtgui/TQCursor.prg index 014d92be6f..079d4fbba0 100644 --- a/harbour/contrib/hbqt/qtgui/TQCursor.prg +++ b/harbour/contrib/hbqt/qtgui/TQCursor.prg @@ -65,7 +65,7 @@ CREATE CLASS QCursor INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD bitmap() METHOD hotSpot() diff --git a/harbour/contrib/hbqt/qtgui/TQDateEdit.prg b/harbour/contrib/hbqt/qtgui/TQDateEdit.prg index 4b737d69c7..44e1061d45 100644 --- a/harbour/contrib/hbqt/qtgui/TQDateEdit.prg +++ b/harbour/contrib/hbqt/qtgui/TQDateEdit.prg @@ -65,7 +65,7 @@ CREATE CLASS QDateEdit INHERIT HbQtObjectHandler, QDateTimeEdit - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQDateTimeEdit.prg b/harbour/contrib/hbqt/qtgui/TQDateTimeEdit.prg index 3f3c063076..14681df717 100644 --- a/harbour/contrib/hbqt/qtgui/TQDateTimeEdit.prg +++ b/harbour/contrib/hbqt/qtgui/TQDateTimeEdit.prg @@ -65,7 +65,7 @@ CREATE CLASS QDateTimeEdit INHERIT HbQtObjectHandler, QAbstractSpinBox - METHOD new() + METHOD new( ... ) METHOD calendarPopup() METHOD calendarWidget() diff --git a/harbour/contrib/hbqt/qtgui/TQDesktopWidget.prg b/harbour/contrib/hbqt/qtgui/TQDesktopWidget.prg index 862c574b51..39e99a71db 100644 --- a/harbour/contrib/hbqt/qtgui/TQDesktopWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQDesktopWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QDesktopWidget INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD availableGeometry( nScreen ) METHOD availableGeometry_1( pWidget ) diff --git a/harbour/contrib/hbqt/qtgui/TQDial.prg b/harbour/contrib/hbqt/qtgui/TQDial.prg index a9070c7dd2..fd525e1357 100644 --- a/harbour/contrib/hbqt/qtgui/TQDial.prg +++ b/harbour/contrib/hbqt/qtgui/TQDial.prg @@ -65,7 +65,7 @@ CREATE CLASS QDial INHERIT HbQtObjectHandler, QAbstractSlider - METHOD new() + METHOD new( ... ) METHOD notchSize() METHOD notchTarget() diff --git a/harbour/contrib/hbqt/qtgui/TQDialog.prg b/harbour/contrib/hbqt/qtgui/TQDialog.prg index 4c3d65a645..42d6f08c9b 100644 --- a/harbour/contrib/hbqt/qtgui/TQDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QDialog INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD isSizeGripEnabled() METHOD result() diff --git a/harbour/contrib/hbqt/qtgui/TQDirModel.prg b/harbour/contrib/hbqt/qtgui/TQDirModel.prg index df5518733a..6954b9b973 100644 --- a/harbour/contrib/hbqt/qtgui/TQDirModel.prg +++ b/harbour/contrib/hbqt/qtgui/TQDirModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QDirModel INHERIT HbQtObjectHandler, QAbstractItemModel - METHOD new() + METHOD new( ... ) METHOD columnCount( pParent ) METHOD data( pIndex, nRole ) diff --git a/harbour/contrib/hbqt/qtgui/TQDockWidget.prg b/harbour/contrib/hbqt/qtgui/TQDockWidget.prg index 92aba521b4..f4dd90aec6 100644 --- a/harbour/contrib/hbqt/qtgui/TQDockWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQDockWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QDockWidget INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD allowedAreas() METHOD features() diff --git a/harbour/contrib/hbqt/qtgui/TQDoubleSpinBox.prg b/harbour/contrib/hbqt/qtgui/TQDoubleSpinBox.prg index f1ed2fe870..dadf91e079 100644 --- a/harbour/contrib/hbqt/qtgui/TQDoubleSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQDoubleSpinBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QDoubleSpinBox INHERIT HbQtObjectHandler, QAbstractSpinBox - METHOD new() + METHOD new( ... ) METHOD cleanText() METHOD decimals() diff --git a/harbour/contrib/hbqt/qtgui/TQDragEnterEvent.prg b/harbour/contrib/hbqt/qtgui/TQDragEnterEvent.prg index 478111bd1b..0fbc7f3dc5 100644 --- a/harbour/contrib/hbqt/qtgui/TQDragEnterEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQDragEnterEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QDragEnterEvent INHERIT HbQtObjectHandler, QDragMoveEvent - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQDragLeaveEvent.prg b/harbour/contrib/hbqt/qtgui/TQDragLeaveEvent.prg index 7758df7a2e..a113140cde 100644 --- a/harbour/contrib/hbqt/qtgui/TQDragLeaveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQDragLeaveEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QDragLeaveEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQDragMoveEvent.prg b/harbour/contrib/hbqt/qtgui/TQDragMoveEvent.prg index c38b452ac9..fcaa23112d 100644 --- a/harbour/contrib/hbqt/qtgui/TQDragMoveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQDragMoveEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QDragMoveEvent INHERIT HbQtObjectHandler, QDropEvent - METHOD new() + METHOD new( ... ) METHOD accept( pRectangle ) METHOD accept_1() diff --git a/harbour/contrib/hbqt/qtgui/TQDropEvent.prg b/harbour/contrib/hbqt/qtgui/TQDropEvent.prg index fcbc7dd15b..0d8b9b97ea 100644 --- a/harbour/contrib/hbqt/qtgui/TQDropEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQDropEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QDropEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD acceptProposedAction() METHOD dropAction() diff --git a/harbour/contrib/hbqt/qtgui/TQErrorMessage.prg b/harbour/contrib/hbqt/qtgui/TQErrorMessage.prg index d27130167d..8019357d45 100644 --- a/harbour/contrib/hbqt/qtgui/TQErrorMessage.prg +++ b/harbour/contrib/hbqt/qtgui/TQErrorMessage.prg @@ -65,7 +65,7 @@ CREATE CLASS QErrorMessage INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD showMessage( cMessage ) METHOD showMessage_1( cMessage, cType ) diff --git a/harbour/contrib/hbqt/qtgui/TQFileDialog.prg b/harbour/contrib/hbqt/qtgui/TQFileDialog.prg index e7817f61c3..9158fd908f 100644 --- a/harbour/contrib/hbqt/qtgui/TQFileDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQFileDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QFileDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD acceptMode() METHOD confirmOverwrite() diff --git a/harbour/contrib/hbqt/qtgui/TQFileIconProvider.prg b/harbour/contrib/hbqt/qtgui/TQFileIconProvider.prg index 832f537e8f..a8b83ed811 100644 --- a/harbour/contrib/hbqt/qtgui/TQFileIconProvider.prg +++ b/harbour/contrib/hbqt/qtgui/TQFileIconProvider.prg @@ -65,7 +65,7 @@ CREATE CLASS QFileIconProvider INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD icon( nType ) METHOD icon_1( pInfo ) diff --git a/harbour/contrib/hbqt/qtgui/TQFileSystemModel.prg b/harbour/contrib/hbqt/qtgui/TQFileSystemModel.prg index 06193799c2..05b80f0302 100644 --- a/harbour/contrib/hbqt/qtgui/TQFileSystemModel.prg +++ b/harbour/contrib/hbqt/qtgui/TQFileSystemModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QFileSystemModel INHERIT HbQtObjectHandler, QAbstractItemModel - METHOD new() + METHOD new( ... ) METHOD dropMimeData( pData, nAction, nRow, nColumn, pParent ) METHOD fileIcon( pIndex ) diff --git a/harbour/contrib/hbqt/qtgui/TQFocusEvent.prg b/harbour/contrib/hbqt/qtgui/TQFocusEvent.prg index 2b8e131443..d979431b49 100644 --- a/harbour/contrib/hbqt/qtgui/TQFocusEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQFocusEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QFocusEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD gotFocus() METHOD lostFocus() diff --git a/harbour/contrib/hbqt/qtgui/TQFocusFrame.prg b/harbour/contrib/hbqt/qtgui/TQFocusFrame.prg index a762ed9e7d..5f4ccfa812 100644 --- a/harbour/contrib/hbqt/qtgui/TQFocusFrame.prg +++ b/harbour/contrib/hbqt/qtgui/TQFocusFrame.prg @@ -65,7 +65,7 @@ CREATE CLASS QFocusFrame INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD setWidget( pWidget ) METHOD widget() diff --git a/harbour/contrib/hbqt/qtgui/TQFont.prg b/harbour/contrib/hbqt/qtgui/TQFont.prg index 86d79fcef9..1f58a5ee63 100644 --- a/harbour/contrib/hbqt/qtgui/TQFont.prg +++ b/harbour/contrib/hbqt/qtgui/TQFont.prg @@ -65,7 +65,7 @@ CREATE CLASS QFont INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD bold() METHOD capitalization() diff --git a/harbour/contrib/hbqt/qtgui/TQFontComboBox.prg b/harbour/contrib/hbqt/qtgui/TQFontComboBox.prg index 22da96d44f..2af61b24e8 100644 --- a/harbour/contrib/hbqt/qtgui/TQFontComboBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQFontComboBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QFontComboBox INHERIT HbQtObjectHandler, QComboBox - METHOD new() + METHOD new( ... ) METHOD currentFont() METHOD fontFilters() diff --git a/harbour/contrib/hbqt/qtgui/TQFontDatabase.prg b/harbour/contrib/hbqt/qtgui/TQFontDatabase.prg index 01c10ea4fe..2f7179d7fc 100644 --- a/harbour/contrib/hbqt/qtgui/TQFontDatabase.prg +++ b/harbour/contrib/hbqt/qtgui/TQFontDatabase.prg @@ -65,7 +65,7 @@ CREATE CLASS QFontDatabase INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD bold( cFamily, cStyle ) METHOD families( nWritingSystem ) diff --git a/harbour/contrib/hbqt/qtgui/TQFontDialog.prg b/harbour/contrib/hbqt/qtgui/TQFontDialog.prg index c51adf1bc9..7417333829 100644 --- a/harbour/contrib/hbqt/qtgui/TQFontDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQFontDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QFontDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD currentFont() METHOD options() diff --git a/harbour/contrib/hbqt/qtgui/TQFontInfo.prg b/harbour/contrib/hbqt/qtgui/TQFontInfo.prg index e51d2f0920..b4bf8e48b0 100644 --- a/harbour/contrib/hbqt/qtgui/TQFontInfo.prg +++ b/harbour/contrib/hbqt/qtgui/TQFontInfo.prg @@ -65,7 +65,7 @@ CREATE CLASS QFontInfo INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD bold() METHOD exactMatch() diff --git a/harbour/contrib/hbqt/qtgui/TQFontMetrics.prg b/harbour/contrib/hbqt/qtgui/TQFontMetrics.prg index 878c2f2112..d7e2b42f81 100644 --- a/harbour/contrib/hbqt/qtgui/TQFontMetrics.prg +++ b/harbour/contrib/hbqt/qtgui/TQFontMetrics.prg @@ -65,7 +65,7 @@ CREATE CLASS QFontMetrics INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD ascent() METHOD averageCharWidth() diff --git a/harbour/contrib/hbqt/qtgui/TQFontMetricsF.prg b/harbour/contrib/hbqt/qtgui/TQFontMetricsF.prg index 481b85990a..4f51edf37e 100644 --- a/harbour/contrib/hbqt/qtgui/TQFontMetricsF.prg +++ b/harbour/contrib/hbqt/qtgui/TQFontMetricsF.prg @@ -65,7 +65,7 @@ CREATE CLASS QFontMetricsF INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD ascent() METHOD averageCharWidth() diff --git a/harbour/contrib/hbqt/qtgui/TQFormLayout.prg b/harbour/contrib/hbqt/qtgui/TQFormLayout.prg index d4d8d1b366..e9a5d0219a 100644 --- a/harbour/contrib/hbqt/qtgui/TQFormLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQFormLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QFormLayout INHERIT HbQtObjectHandler, QLayout - METHOD new() + METHOD new( ... ) METHOD addRow( pLabel, pField ) METHOD addRow_1( pLabel, pField ) diff --git a/harbour/contrib/hbqt/qtgui/TQFrame.prg b/harbour/contrib/hbqt/qtgui/TQFrame.prg index 99e8078283..15160af6f7 100644 --- a/harbour/contrib/hbqt/qtgui/TQFrame.prg +++ b/harbour/contrib/hbqt/qtgui/TQFrame.prg @@ -65,7 +65,7 @@ CREATE CLASS QFrame INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD frameRect() METHOD frameShadow() diff --git a/harbour/contrib/hbqt/qtgui/TQGradient.prg b/harbour/contrib/hbqt/qtgui/TQGradient.prg index 5e9d072832..9e92e901b9 100644 --- a/harbour/contrib/hbqt/qtgui/TQGradient.prg +++ b/harbour/contrib/hbqt/qtgui/TQGradient.prg @@ -65,7 +65,7 @@ CREATE CLASS QGradient INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD coordinateMode() METHOD setColorAt( nPosition, pColor ) diff --git a/harbour/contrib/hbqt/qtgui/TQGridLayout.prg b/harbour/contrib/hbqt/qtgui/TQGridLayout.prg index e5a5d4e10f..15b9171fc0 100644 --- a/harbour/contrib/hbqt/qtgui/TQGridLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQGridLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QGridLayout INHERIT HbQtObjectHandler, QLayout - METHOD new() + METHOD new( ... ) METHOD addItem( pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) METHOD addLayout( pLayout, nRow, nColumn, nAlignment ) diff --git a/harbour/contrib/hbqt/qtgui/TQGroupBox.prg b/harbour/contrib/hbqt/qtgui/TQGroupBox.prg index 28a3b9ad54..408a1fd836 100644 --- a/harbour/contrib/hbqt/qtgui/TQGroupBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQGroupBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QGroupBox INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD isCheckable() diff --git a/harbour/contrib/hbqt/qtgui/TQHBoxLayout.prg b/harbour/contrib/hbqt/qtgui/TQHBoxLayout.prg index f267749361..9026d88e10 100644 --- a/harbour/contrib/hbqt/qtgui/TQHBoxLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQHBoxLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QHBoxLayout INHERIT HbQtObjectHandler, QBoxLayout - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQHeaderView.prg b/harbour/contrib/hbqt/qtgui/TQHeaderView.prg index 05da2ce14c..39fc2bd063 100644 --- a/harbour/contrib/hbqt/qtgui/TQHeaderView.prg +++ b/harbour/contrib/hbqt/qtgui/TQHeaderView.prg @@ -65,7 +65,7 @@ CREATE CLASS QHeaderView INHERIT HbQtObjectHandler, QAbstractItemView - METHOD new() + METHOD new( ... ) METHOD cascadingSectionResizes() METHOD count() diff --git a/harbour/contrib/hbqt/qtgui/TQHelpEvent.prg b/harbour/contrib/hbqt/qtgui/TQHelpEvent.prg index 2bbd6bcc91..7b130ae7d5 100644 --- a/harbour/contrib/hbqt/qtgui/TQHelpEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQHelpEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QHelpEvent INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD globalPos() METHOD globalX() diff --git a/harbour/contrib/hbqt/qtgui/TQIcon.prg b/harbour/contrib/hbqt/qtgui/TQIcon.prg index a369f3afc9..71881190d8 100644 --- a/harbour/contrib/hbqt/qtgui/TQIcon.prg +++ b/harbour/contrib/hbqt/qtgui/TQIcon.prg @@ -65,7 +65,7 @@ CREATE CLASS QIcon INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD actualSize( pSize, nMode, nState ) METHOD addFile( cFileName, pSize, nMode, nState ) diff --git a/harbour/contrib/hbqt/qtgui/TQImage.prg b/harbour/contrib/hbqt/qtgui/TQImage.prg index c26bc6c463..cb50b7790b 100644 --- a/harbour/contrib/hbqt/qtgui/TQImage.prg +++ b/harbour/contrib/hbqt/qtgui/TQImage.prg @@ -65,7 +65,7 @@ CREATE CLASS QImage INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD allGray() METHOD alphaChannel() diff --git a/harbour/contrib/hbqt/qtgui/TQImageReader.prg b/harbour/contrib/hbqt/qtgui/TQImageReader.prg index e80b16cd61..2a618a15bd 100644 --- a/harbour/contrib/hbqt/qtgui/TQImageReader.prg +++ b/harbour/contrib/hbqt/qtgui/TQImageReader.prg @@ -65,7 +65,7 @@ CREATE CLASS QImageReader INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD autoDetectImageFormat() METHOD backgroundColor() diff --git a/harbour/contrib/hbqt/qtgui/TQImageWriter.prg b/harbour/contrib/hbqt/qtgui/TQImageWriter.prg index 70eb2aa183..85fa5004a2 100644 --- a/harbour/contrib/hbqt/qtgui/TQImageWriter.prg +++ b/harbour/contrib/hbqt/qtgui/TQImageWriter.prg @@ -65,7 +65,7 @@ CREATE CLASS QImageWriter INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD canWrite() METHOD compression() diff --git a/harbour/contrib/hbqt/qtgui/TQInputContext.prg b/harbour/contrib/hbqt/qtgui/TQInputContext.prg index 0d4d58afc3..befe0d1b10 100644 --- a/harbour/contrib/hbqt/qtgui/TQInputContext.prg +++ b/harbour/contrib/hbqt/qtgui/TQInputContext.prg @@ -65,7 +65,7 @@ CREATE CLASS QInputContext INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD filterEvent( pEvent ) METHOD font() diff --git a/harbour/contrib/hbqt/qtgui/TQInputDialog.prg b/harbour/contrib/hbqt/qtgui/TQInputDialog.prg index 8a9c689e23..a4bc5fd97d 100644 --- a/harbour/contrib/hbqt/qtgui/TQInputDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQInputDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QInputDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD cancelButtonText() METHOD comboBoxItems() diff --git a/harbour/contrib/hbqt/qtgui/TQInputEvent.prg b/harbour/contrib/hbqt/qtgui/TQInputEvent.prg index a205019b7a..2c53b7545d 100644 --- a/harbour/contrib/hbqt/qtgui/TQInputEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQInputEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QInputEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD modifiers() diff --git a/harbour/contrib/hbqt/qtgui/TQInputMethodEvent.prg b/harbour/contrib/hbqt/qtgui/TQInputMethodEvent.prg index 39f0861428..793c49057b 100644 --- a/harbour/contrib/hbqt/qtgui/TQInputMethodEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQInputMethodEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QInputMethodEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD commitString() METHOD preeditString() diff --git a/harbour/contrib/hbqt/qtgui/TQItemSelection.prg b/harbour/contrib/hbqt/qtgui/TQItemSelection.prg index caa4be177d..2ac44b2390 100644 --- a/harbour/contrib/hbqt/qtgui/TQItemSelection.prg +++ b/harbour/contrib/hbqt/qtgui/TQItemSelection.prg @@ -65,7 +65,7 @@ CREATE CLASS QItemSelection INHERIT HbQtObjectHandler, QList - METHOD new() + METHOD new( ... ) METHOD contains( pIndex ) METHOD merge( pOther, nCommand ) diff --git a/harbour/contrib/hbqt/qtgui/TQItemSelectionModel.prg b/harbour/contrib/hbqt/qtgui/TQItemSelectionModel.prg index c2e39fb648..c731509f55 100644 --- a/harbour/contrib/hbqt/qtgui/TQItemSelectionModel.prg +++ b/harbour/contrib/hbqt/qtgui/TQItemSelectionModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QItemSelectionModel INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD columnIntersectsSelection( nColumn, pParent ) METHOD currentIndex() diff --git a/harbour/contrib/hbqt/qtgui/TQKeyEvent.prg b/harbour/contrib/hbqt/qtgui/TQKeyEvent.prg index 0111f4ff8f..b7123cfa86 100644 --- a/harbour/contrib/hbqt/qtgui/TQKeyEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQKeyEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QKeyEvent INHERIT HbQtObjectHandler, QInputEvent - METHOD new() + METHOD new( ... ) METHOD count() METHOD isAutoRepeat() diff --git a/harbour/contrib/hbqt/qtgui/TQKeySequence.prg b/harbour/contrib/hbqt/qtgui/TQKeySequence.prg index d96cdcdb15..86649970e5 100644 --- a/harbour/contrib/hbqt/qtgui/TQKeySequence.prg +++ b/harbour/contrib/hbqt/qtgui/TQKeySequence.prg @@ -65,7 +65,7 @@ CREATE CLASS QKeySequence INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD count() METHOD isEmpty() diff --git a/harbour/contrib/hbqt/qtgui/TQLCDNumber.prg b/harbour/contrib/hbqt/qtgui/TQLCDNumber.prg index d5cc8978ac..006d5863f1 100644 --- a/harbour/contrib/hbqt/qtgui/TQLCDNumber.prg +++ b/harbour/contrib/hbqt/qtgui/TQLCDNumber.prg @@ -65,7 +65,7 @@ CREATE CLASS QLCDNumber INHERIT HbQtObjectHandler, QFrame - METHOD new() + METHOD new( ... ) METHOD checkOverflow( nNum ) METHOD checkOverflow_1( nNum ) diff --git a/harbour/contrib/hbqt/qtgui/TQLabel.prg b/harbour/contrib/hbqt/qtgui/TQLabel.prg index 5dfe9bd643..1238947713 100644 --- a/harbour/contrib/hbqt/qtgui/TQLabel.prg +++ b/harbour/contrib/hbqt/qtgui/TQLabel.prg @@ -65,7 +65,7 @@ CREATE CLASS QLabel INHERIT HbQtObjectHandler, QFrame - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD buddy() diff --git a/harbour/contrib/hbqt/qtgui/TQLayout.prg b/harbour/contrib/hbqt/qtgui/TQLayout.prg index 7432785605..436c25ef70 100644 --- a/harbour/contrib/hbqt/qtgui/TQLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QLayout INHERIT HbQtObjectHandler, QObject, QLayoutItem - METHOD new() + METHOD new( ... ) METHOD activate() METHOD addItem( pItem ) diff --git a/harbour/contrib/hbqt/qtgui/TQLayoutItem.prg b/harbour/contrib/hbqt/qtgui/TQLayoutItem.prg index 858a993b6f..0b3d5195db 100644 --- a/harbour/contrib/hbqt/qtgui/TQLayoutItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQLayoutItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QLayoutItem INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD controlTypes() diff --git a/harbour/contrib/hbqt/qtgui/TQLineEdit.prg b/harbour/contrib/hbqt/qtgui/TQLineEdit.prg index e37eabeba0..8f90efe6d9 100644 --- a/harbour/contrib/hbqt/qtgui/TQLineEdit.prg +++ b/harbour/contrib/hbqt/qtgui/TQLineEdit.prg @@ -65,7 +65,7 @@ CREATE CLASS QLineEdit INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD backspace() diff --git a/harbour/contrib/hbqt/qtgui/TQLinearGradient.prg b/harbour/contrib/hbqt/qtgui/TQLinearGradient.prg index 977b85668f..92d01369bc 100644 --- a/harbour/contrib/hbqt/qtgui/TQLinearGradient.prg +++ b/harbour/contrib/hbqt/qtgui/TQLinearGradient.prg @@ -65,7 +65,7 @@ CREATE CLASS QLinearGradient INHERIT HbQtObjectHandler, QGradient - METHOD new() + METHOD new( ... ) METHOD finalStop() METHOD setFinalStop( pStop ) diff --git a/harbour/contrib/hbqt/qtgui/TQListView.prg b/harbour/contrib/hbqt/qtgui/TQListView.prg index 45684b69ef..aee1a05c12 100644 --- a/harbour/contrib/hbqt/qtgui/TQListView.prg +++ b/harbour/contrib/hbqt/qtgui/TQListView.prg @@ -65,7 +65,7 @@ CREATE CLASS QListView INHERIT HbQtObjectHandler, QAbstractItemView - METHOD new() + METHOD new( ... ) METHOD batchSize() METHOD clearPropertyFlags() diff --git a/harbour/contrib/hbqt/qtgui/TQListWidget.prg b/harbour/contrib/hbqt/qtgui/TQListWidget.prg index eeee346f2e..36c03aea05 100644 --- a/harbour/contrib/hbqt/qtgui/TQListWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQListWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QListWidget INHERIT HbQtObjectHandler, QListView - METHOD new() + METHOD new( ... ) METHOD addItem( cLabel ) METHOD addItem_1( pItem ) diff --git a/harbour/contrib/hbqt/qtgui/TQListWidgetItem.prg b/harbour/contrib/hbqt/qtgui/TQListWidgetItem.prg index 7bbac5be70..f315ab0378 100644 --- a/harbour/contrib/hbqt/qtgui/TQListWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQListWidgetItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QListWidgetItem INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD background() METHOD checkState() diff --git a/harbour/contrib/hbqt/qtgui/TQMainWindow.prg b/harbour/contrib/hbqt/qtgui/TQMainWindow.prg index 85435c3934..b4985ae08a 100644 --- a/harbour/contrib/hbqt/qtgui/TQMainWindow.prg +++ b/harbour/contrib/hbqt/qtgui/TQMainWindow.prg @@ -65,7 +65,7 @@ CREATE CLASS QMainWindow INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD addDockWidget( nArea, pDockwidget ) METHOD addDockWidget_1( nArea, pDockwidget, nOrientation ) diff --git a/harbour/contrib/hbqt/qtgui/TQMatrix.prg b/harbour/contrib/hbqt/qtgui/TQMatrix.prg index a19ea9d155..7e41ee0214 100644 --- a/harbour/contrib/hbqt/qtgui/TQMatrix.prg +++ b/harbour/contrib/hbqt/qtgui/TQMatrix.prg @@ -65,7 +65,7 @@ CREATE CLASS QMatrix INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD m11() METHOD m12() diff --git a/harbour/contrib/hbqt/qtgui/TQMenu.prg b/harbour/contrib/hbqt/qtgui/TQMenu.prg index 18d269a4a4..da8fc617ff 100644 --- a/harbour/contrib/hbqt/qtgui/TQMenu.prg +++ b/harbour/contrib/hbqt/qtgui/TQMenu.prg @@ -65,7 +65,7 @@ CREATE CLASS QMenu INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD actionAt( pPt ) METHOD actionGeometry( pAct ) diff --git a/harbour/contrib/hbqt/qtgui/TQMenuBar.prg b/harbour/contrib/hbqt/qtgui/TQMenuBar.prg index de054e66d6..9026727731 100644 --- a/harbour/contrib/hbqt/qtgui/TQMenuBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQMenuBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QMenuBar INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD activeAction() METHOD addAction( cText ) diff --git a/harbour/contrib/hbqt/qtgui/TQMessageBox.prg b/harbour/contrib/hbqt/qtgui/TQMessageBox.prg index 48ecb0de6f..d77cf2ad97 100644 --- a/harbour/contrib/hbqt/qtgui/TQMessageBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQMessageBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QMessageBox INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD addButton( pButton, nRole ) METHOD addButton_1( cText, nRole ) diff --git a/harbour/contrib/hbqt/qtgui/TQMouseEvent.prg b/harbour/contrib/hbqt/qtgui/TQMouseEvent.prg index 037f038931..e1298cd29f 100644 --- a/harbour/contrib/hbqt/qtgui/TQMouseEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQMouseEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QMouseEvent INHERIT HbQtObjectHandler, QInputEvent - METHOD new() + METHOD new( ... ) METHOD button() METHOD buttons() diff --git a/harbour/contrib/hbqt/qtgui/TQMoveEvent.prg b/harbour/contrib/hbqt/qtgui/TQMoveEvent.prg index 777211dc05..e1a9d9dafe 100644 --- a/harbour/contrib/hbqt/qtgui/TQMoveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQMoveEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QMoveEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD oldPos() METHOD pos() diff --git a/harbour/contrib/hbqt/qtgui/TQMovie.prg b/harbour/contrib/hbqt/qtgui/TQMovie.prg index 33d6908bbb..26c590cdb9 100644 --- a/harbour/contrib/hbqt/qtgui/TQMovie.prg +++ b/harbour/contrib/hbqt/qtgui/TQMovie.prg @@ -65,7 +65,7 @@ CREATE CLASS QMovie INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD backgroundColor() METHOD cacheMode() diff --git a/harbour/contrib/hbqt/qtgui/TQPageSetupDialog.prg b/harbour/contrib/hbqt/qtgui/TQPageSetupDialog.prg index 3b59c39f54..d1cb08e764 100644 --- a/harbour/contrib/hbqt/qtgui/TQPageSetupDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQPageSetupDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QPageSetupDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD exec() METHOD open( pReceiver, pMember ) diff --git a/harbour/contrib/hbqt/qtgui/TQPaintDevice.prg b/harbour/contrib/hbqt/qtgui/TQPaintDevice.prg index d40010b605..11775eda7a 100644 --- a/harbour/contrib/hbqt/qtgui/TQPaintDevice.prg +++ b/harbour/contrib/hbqt/qtgui/TQPaintDevice.prg @@ -65,7 +65,7 @@ CREATE CLASS QPaintDevice INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD depth() METHOD height() diff --git a/harbour/contrib/hbqt/qtgui/TQPaintEvent.prg b/harbour/contrib/hbqt/qtgui/TQPaintEvent.prg index 7eb85e8bfa..f7114a5818 100644 --- a/harbour/contrib/hbqt/qtgui/TQPaintEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQPaintEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QPaintEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD rect() METHOD region() diff --git a/harbour/contrib/hbqt/qtgui/TQPainter.prg b/harbour/contrib/hbqt/qtgui/TQPainter.prg index 1c3f35e0fb..9536e33282 100644 --- a/harbour/contrib/hbqt/qtgui/TQPainter.prg +++ b/harbour/contrib/hbqt/qtgui/TQPainter.prg @@ -65,7 +65,7 @@ CREATE CLASS QPainter INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD background() METHOD backgroundMode() diff --git a/harbour/contrib/hbqt/qtgui/TQPainterPath.prg b/harbour/contrib/hbqt/qtgui/TQPainterPath.prg index 0c25684ab2..e386446d2b 100644 --- a/harbour/contrib/hbqt/qtgui/TQPainterPath.prg +++ b/harbour/contrib/hbqt/qtgui/TQPainterPath.prg @@ -65,7 +65,7 @@ CREATE CLASS QPainterPath INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD addEllipse( pBoundingRectangle ) METHOD addEllipse_1( nX, nY, nWidth, nHeight ) diff --git a/harbour/contrib/hbqt/qtgui/TQPalette.prg b/harbour/contrib/hbqt/qtgui/TQPalette.prg index dfeb45c19e..11fd9770c6 100644 --- a/harbour/contrib/hbqt/qtgui/TQPalette.prg +++ b/harbour/contrib/hbqt/qtgui/TQPalette.prg @@ -65,7 +65,7 @@ CREATE CLASS QPalette INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD alternateBase() METHOD base() diff --git a/harbour/contrib/hbqt/qtgui/TQPen.prg b/harbour/contrib/hbqt/qtgui/TQPen.prg index d8c17c6962..2608ce4903 100644 --- a/harbour/contrib/hbqt/qtgui/TQPen.prg +++ b/harbour/contrib/hbqt/qtgui/TQPen.prg @@ -65,7 +65,7 @@ CREATE CLASS QPen INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD brush() METHOD capStyle() diff --git a/harbour/contrib/hbqt/qtgui/TQPicture.prg b/harbour/contrib/hbqt/qtgui/TQPicture.prg index 1af0506179..dbd8c8f0ad 100644 --- a/harbour/contrib/hbqt/qtgui/TQPicture.prg +++ b/harbour/contrib/hbqt/qtgui/TQPicture.prg @@ -65,7 +65,7 @@ CREATE CLASS QPicture INHERIT HbQtObjectHandler, QPaintDevice - METHOD new() + METHOD new( ... ) METHOD boundingRect() METHOD data() diff --git a/harbour/contrib/hbqt/qtgui/TQPixmap.prg b/harbour/contrib/hbqt/qtgui/TQPixmap.prg index fa3fcf56cf..a3014225e9 100644 --- a/harbour/contrib/hbqt/qtgui/TQPixmap.prg +++ b/harbour/contrib/hbqt/qtgui/TQPixmap.prg @@ -65,7 +65,7 @@ CREATE CLASS QPixmap INHERIT HbQtObjectHandler, QPaintDevice - METHOD new() + METHOD new( ... ) METHOD alphaChannel() METHOD cacheKey() diff --git a/harbour/contrib/hbqt/qtgui/TQPlainTextEdit.prg b/harbour/contrib/hbqt/qtgui/TQPlainTextEdit.prg index b1482b19c8..ca48bd85f9 100644 --- a/harbour/contrib/hbqt/qtgui/TQPlainTextEdit.prg +++ b/harbour/contrib/hbqt/qtgui/TQPlainTextEdit.prg @@ -65,7 +65,7 @@ CREATE CLASS QPlainTextEdit INHERIT HbQtObjectHandler, QAbstractScrollArea - METHOD new() + METHOD new( ... ) METHOD backgroundVisible() METHOD blockCount() diff --git a/harbour/contrib/hbqt/qtgui/TQPolygon.prg b/harbour/contrib/hbqt/qtgui/TQPolygon.prg index d65fdf0408..4f63937476 100644 --- a/harbour/contrib/hbqt/qtgui/TQPolygon.prg +++ b/harbour/contrib/hbqt/qtgui/TQPolygon.prg @@ -65,7 +65,7 @@ CREATE CLASS QPolygon INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD boundingRect() METHOD containsPoint( pPoint, nFillRule ) diff --git a/harbour/contrib/hbqt/qtgui/TQPolygonF.prg b/harbour/contrib/hbqt/qtgui/TQPolygonF.prg index e8e4c9ced5..0ae5604ace 100644 --- a/harbour/contrib/hbqt/qtgui/TQPolygonF.prg +++ b/harbour/contrib/hbqt/qtgui/TQPolygonF.prg @@ -65,7 +65,7 @@ CREATE CLASS QPolygonF INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD boundingRect() METHOD containsPoint( pPoint, nFillRule ) diff --git a/harbour/contrib/hbqt/qtgui/TQPrintDialog.prg b/harbour/contrib/hbqt/qtgui/TQPrintDialog.prg index 6d863511a2..cd4efcd486 100644 --- a/harbour/contrib/hbqt/qtgui/TQPrintDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQPrintDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QPrintDialog INHERIT HbQtObjectHandler, QAbstractPrintDialog - METHOD new() + METHOD new( ... ) METHOD done( nResult ) METHOD open( pReceiver, pMember ) diff --git a/harbour/contrib/hbqt/qtgui/TQPrintEngine.prg b/harbour/contrib/hbqt/qtgui/TQPrintEngine.prg index 2e1cbe015a..4b0724803a 100644 --- a/harbour/contrib/hbqt/qtgui/TQPrintEngine.prg +++ b/harbour/contrib/hbqt/qtgui/TQPrintEngine.prg @@ -65,7 +65,7 @@ CREATE CLASS QPrintEngine INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD abort() METHOD metric( nId ) diff --git a/harbour/contrib/hbqt/qtgui/TQPrintPreviewDialog.prg b/harbour/contrib/hbqt/qtgui/TQPrintPreviewDialog.prg index 6076c33361..1bfed17d84 100644 --- a/harbour/contrib/hbqt/qtgui/TQPrintPreviewDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQPrintPreviewDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QPrintPreviewDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD open( pReceiver, pMember ) METHOD printer() diff --git a/harbour/contrib/hbqt/qtgui/TQPrinter.prg b/harbour/contrib/hbqt/qtgui/TQPrinter.prg index d9d5afefe1..00a6729526 100644 --- a/harbour/contrib/hbqt/qtgui/TQPrinter.prg +++ b/harbour/contrib/hbqt/qtgui/TQPrinter.prg @@ -65,7 +65,7 @@ CREATE CLASS QPrinter INHERIT HbQtObjectHandler, QPaintDevice - METHOD new() + METHOD new( ... ) METHOD abort() METHOD collateCopies() diff --git a/harbour/contrib/hbqt/qtgui/TQProgressBar.prg b/harbour/contrib/hbqt/qtgui/TQProgressBar.prg index 35942df4e0..ff5089750e 100644 --- a/harbour/contrib/hbqt/qtgui/TQProgressBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQProgressBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QProgressBar INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD format() diff --git a/harbour/contrib/hbqt/qtgui/TQProgressDialog.prg b/harbour/contrib/hbqt/qtgui/TQProgressDialog.prg index 45a6820cdf..e1e83d6b39 100644 --- a/harbour/contrib/hbqt/qtgui/TQProgressDialog.prg +++ b/harbour/contrib/hbqt/qtgui/TQProgressDialog.prg @@ -65,7 +65,7 @@ CREATE CLASS QProgressDialog INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD autoClose() METHOD autoReset() diff --git a/harbour/contrib/hbqt/qtgui/TQPushButton.prg b/harbour/contrib/hbqt/qtgui/TQPushButton.prg index c7048ee8bc..c130022815 100644 --- a/harbour/contrib/hbqt/qtgui/TQPushButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQPushButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QPushButton INHERIT HbQtObjectHandler, QAbstractButton - METHOD new() + METHOD new( ... ) METHOD autoDefault() METHOD isDefault() diff --git a/harbour/contrib/hbqt/qtgui/TQRadialGradient.prg b/harbour/contrib/hbqt/qtgui/TQRadialGradient.prg index 5a16590298..a423d379e3 100644 --- a/harbour/contrib/hbqt/qtgui/TQRadialGradient.prg +++ b/harbour/contrib/hbqt/qtgui/TQRadialGradient.prg @@ -65,7 +65,7 @@ CREATE CLASS QRadialGradient INHERIT HbQtObjectHandler, QGradient - METHOD new() + METHOD new( ... ) METHOD center() METHOD focalPoint() diff --git a/harbour/contrib/hbqt/qtgui/TQRadioButton.prg b/harbour/contrib/hbqt/qtgui/TQRadioButton.prg index cf88b24820..709d9f4855 100644 --- a/harbour/contrib/hbqt/qtgui/TQRadioButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQRadioButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QRadioButton INHERIT HbQtObjectHandler, QAbstractButton - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQRegion.prg b/harbour/contrib/hbqt/qtgui/TQRegion.prg index 7c96b242c8..255cdb75fd 100644 --- a/harbour/contrib/hbqt/qtgui/TQRegion.prg +++ b/harbour/contrib/hbqt/qtgui/TQRegion.prg @@ -65,7 +65,7 @@ CREATE CLASS QRegion INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD boundingRect() METHOD contains( pP ) diff --git a/harbour/contrib/hbqt/qtgui/TQResizeEvent.prg b/harbour/contrib/hbqt/qtgui/TQResizeEvent.prg index bc68a515b5..cf0c481280 100644 --- a/harbour/contrib/hbqt/qtgui/TQResizeEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQResizeEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QResizeEvent INHERIT HbQtObjectHandler, QEvent - METHOD new() + METHOD new( ... ) METHOD oldSize() METHOD size() diff --git a/harbour/contrib/hbqt/qtgui/TQScrollArea.prg b/harbour/contrib/hbqt/qtgui/TQScrollArea.prg index c323de1802..e3556eaa27 100644 --- a/harbour/contrib/hbqt/qtgui/TQScrollArea.prg +++ b/harbour/contrib/hbqt/qtgui/TQScrollArea.prg @@ -65,7 +65,7 @@ CREATE CLASS QScrollArea INHERIT HbQtObjectHandler, QAbstractScrollArea - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD ensureVisible( nX, nY, nXmargin, nYmargin ) diff --git a/harbour/contrib/hbqt/qtgui/TQScrollBar.prg b/harbour/contrib/hbqt/qtgui/TQScrollBar.prg index ddc742ab44..2eae8a8df8 100644 --- a/harbour/contrib/hbqt/qtgui/TQScrollBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQScrollBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QScrollBar INHERIT HbQtObjectHandler, QAbstractSlider - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQSessionManager.prg b/harbour/contrib/hbqt/qtgui/TQSessionManager.prg index 2adf7932f0..b22a292626 100644 --- a/harbour/contrib/hbqt/qtgui/TQSessionManager.prg +++ b/harbour/contrib/hbqt/qtgui/TQSessionManager.prg @@ -65,7 +65,7 @@ CREATE CLASS QSessionManager INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD allowsErrorInteraction() METHOD allowsInteraction() diff --git a/harbour/contrib/hbqt/qtgui/TQSizeGrip.prg b/harbour/contrib/hbqt/qtgui/TQSizeGrip.prg index d2d1866305..192b6743c7 100644 --- a/harbour/contrib/hbqt/qtgui/TQSizeGrip.prg +++ b/harbour/contrib/hbqt/qtgui/TQSizeGrip.prg @@ -65,7 +65,7 @@ CREATE CLASS QSizeGrip INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQSizePolicy.prg b/harbour/contrib/hbqt/qtgui/TQSizePolicy.prg index 75684d4450..929b702f53 100644 --- a/harbour/contrib/hbqt/qtgui/TQSizePolicy.prg +++ b/harbour/contrib/hbqt/qtgui/TQSizePolicy.prg @@ -65,7 +65,7 @@ CREATE CLASS QSizePolicy INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD controlType() METHOD expandingDirections() diff --git a/harbour/contrib/hbqt/qtgui/TQSlider.prg b/harbour/contrib/hbqt/qtgui/TQSlider.prg index 2a2e692e75..60864bed66 100644 --- a/harbour/contrib/hbqt/qtgui/TQSlider.prg +++ b/harbour/contrib/hbqt/qtgui/TQSlider.prg @@ -65,7 +65,7 @@ CREATE CLASS QSlider INHERIT HbQtObjectHandler, QAbstractSlider - METHOD new() + METHOD new( ... ) METHOD setTickInterval( nTi ) METHOD setTickPosition( nPosition ) diff --git a/harbour/contrib/hbqt/qtgui/TQSound.prg b/harbour/contrib/hbqt/qtgui/TQSound.prg index 28a7104bcf..4d353527ba 100644 --- a/harbour/contrib/hbqt/qtgui/TQSound.prg +++ b/harbour/contrib/hbqt/qtgui/TQSound.prg @@ -65,7 +65,7 @@ CREATE CLASS QSound INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD fileName() METHOD isFinished() diff --git a/harbour/contrib/hbqt/qtgui/TQSpacerItem.prg b/harbour/contrib/hbqt/qtgui/TQSpacerItem.prg index 0041ed5226..eb9a840f03 100644 --- a/harbour/contrib/hbqt/qtgui/TQSpacerItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQSpacerItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QSpacerItem INHERIT HbQtObjectHandler, QLayoutItem - METHOD new() + METHOD new( ... ) METHOD changeSize( nW, nH, nHPolicy, nVPolicy ) METHOD isEmpty() diff --git a/harbour/contrib/hbqt/qtgui/TQSpinBox.prg b/harbour/contrib/hbqt/qtgui/TQSpinBox.prg index d44b354fa4..489a041202 100644 --- a/harbour/contrib/hbqt/qtgui/TQSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQSpinBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QSpinBox INHERIT HbQtObjectHandler, QAbstractSpinBox - METHOD new() + METHOD new( ... ) METHOD cleanText() METHOD maximum() diff --git a/harbour/contrib/hbqt/qtgui/TQSplashScreen.prg b/harbour/contrib/hbqt/qtgui/TQSplashScreen.prg index fe31cdee0c..d9f470773a 100644 --- a/harbour/contrib/hbqt/qtgui/TQSplashScreen.prg +++ b/harbour/contrib/hbqt/qtgui/TQSplashScreen.prg @@ -65,7 +65,7 @@ CREATE CLASS QSplashScreen INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD finish( pMainWin ) METHOD pixmap() diff --git a/harbour/contrib/hbqt/qtgui/TQSplitter.prg b/harbour/contrib/hbqt/qtgui/TQSplitter.prg index 7f3fc9456b..56def69e3c 100644 --- a/harbour/contrib/hbqt/qtgui/TQSplitter.prg +++ b/harbour/contrib/hbqt/qtgui/TQSplitter.prg @@ -65,7 +65,7 @@ CREATE CLASS QSplitter INHERIT HbQtObjectHandler, QFrame - METHOD new() + METHOD new( ... ) METHOD addWidget( pWidget ) METHOD childrenCollapsible() diff --git a/harbour/contrib/hbqt/qtgui/TQStandardItem.prg b/harbour/contrib/hbqt/qtgui/TQStandardItem.prg index ed37581eca..fc85f6e97c 100644 --- a/harbour/contrib/hbqt/qtgui/TQStandardItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQStandardItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QStandardItem INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD accessibleDescription() METHOD accessibleText() diff --git a/harbour/contrib/hbqt/qtgui/TQStandardItemModel.prg b/harbour/contrib/hbqt/qtgui/TQStandardItemModel.prg index 4a4aa6df7a..2ce2df2184 100644 --- a/harbour/contrib/hbqt/qtgui/TQStandardItemModel.prg +++ b/harbour/contrib/hbqt/qtgui/TQStandardItemModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QStandardItemModel INHERIT HbQtObjectHandler, QAbstractItemModeL - METHOD new() + METHOD new( ... ) METHOD appendRow( pItem ) METHOD clear() diff --git a/harbour/contrib/hbqt/qtgui/TQStatusBar.prg b/harbour/contrib/hbqt/qtgui/TQStatusBar.prg index 347eeb15e2..94994222bb 100644 --- a/harbour/contrib/hbqt/qtgui/TQStatusBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQStatusBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QStatusBar INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD addPermanentWidget( pWidget, nStretch ) METHOD addWidget( pWidget, nStretch ) diff --git a/harbour/contrib/hbqt/qtgui/TQStringListModel.prg b/harbour/contrib/hbqt/qtgui/TQStringListModel.prg index af23bede59..316f3b3dfd 100644 --- a/harbour/contrib/hbqt/qtgui/TQStringListModel.prg +++ b/harbour/contrib/hbqt/qtgui/TQStringListModel.prg @@ -65,7 +65,7 @@ CREATE CLASS QStringListModel INHERIT HbQtObjectHandler, QAbstractListModel - METHOD new() + METHOD new( ... ) METHOD data( pIndex, nRole ) METHOD flags( pIndex ) diff --git a/harbour/contrib/hbqt/qtgui/TQStyle.prg b/harbour/contrib/hbqt/qtgui/TQStyle.prg index 5e48b6d8e8..ecff436212 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyle.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyle.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyle INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD combinedLayoutSpacing( nControls1, nControls2, nOrientation, pOption, pWidget ) METHOD drawComplexControl( nControl, pOption, pPainter, pWidget ) diff --git a/harbour/contrib/hbqt/qtgui/TQStyleFactory.prg b/harbour/contrib/hbqt/qtgui/TQStyleFactory.prg index bc8fd95691..c924f634ee 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleFactory.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleFactory.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleFactory INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD create( cKey ) METHOD keys() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleHintReturn.prg b/harbour/contrib/hbqt/qtgui/TQStyleHintReturn.prg index 7dfb0e9bfa..f4ab4a2af9 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleHintReturn.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleHintReturn.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleHintReturn INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQStyleHintReturnMask.prg b/harbour/contrib/hbqt/qtgui/TQStyleHintReturnMask.prg index 787ac2ae71..ca668eb928 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleHintReturnMask.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleHintReturnMask.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleHintReturnMask INHERIT HbQtObjectHandler, QStyleHintReturn - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQStyleHintReturnVariant.prg b/harbour/contrib/hbqt/qtgui/TQStyleHintReturnVariant.prg index 4843a32a7e..24c4596720 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleHintReturnVariant.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleHintReturnVariant.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleHintReturnVariant INHERIT HbQtObjectHandler, QStyleHintReturn - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOption.prg b/harbour/contrib/hbqt/qtgui/TQStyleOption.prg index e21211c009..684b92f84e 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOption.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOption.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOption INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD initFrom( pWidget ) METHOD direction() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionButton.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionButton.prg index a9e4abdbc3..69f8bd0df6 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionButton INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD features() METHOD icon() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionComboBox.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionComboBox.prg index 77438849a1..71bd89447f 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionComboBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionComboBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionComboBox INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD currentIcon() METHOD currentText() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionComplex.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionComplex.prg index f13d2a4646..4ed820914f 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionComplex.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionComplex.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionComplex INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD activeSubControls() METHOD subControls() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg index eab2c22c7f..73f14fa0ed 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionDockWidget INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD closable() METHOD floatable() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg index b143408318..5dac1f9c46 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionFocusRect INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD backgroundColor() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionFrame.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionFrame.prg index a3f36d71be..efeb3d9426 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionFrame.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionFrame.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionFrame INHERIT HbQtObjectHandler, qStyleOption - METHOD new() + METHOD new( ... ) METHOD lineWidth() METHOD midLineWidth() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg index ae117018af..fc1f3bc04c 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionGroupBox INHERIT HbQtObjectHandler, QStyleOptionComplex - METHOD new() + METHOD new( ... ) METHOD features() METHOD lineWidth() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionHeader.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionHeader.prg index 74e0005e55..8432f476b8 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionHeader.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionHeader.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionHeader INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD icon() METHOD iconAlignment() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg index c59788d5f9..44a6ceb908 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionMenuItem INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD checkType() METHOD checked() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg index bed5759014..b236cbe1ab 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionProgressBar INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD maximum() METHOD minimum() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg index 21d00cd7f4..f54f41b0eb 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionSizeGrip INHERIT HbQtObjectHandler, QStyleOptionComplex - METHOD new() + METHOD new( ... ) METHOD corner() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionSlider.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionSlider.prg index 3e9352b25a..547d2c7d11 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionSlider.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionSlider.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionSlider INHERIT HbQtObjectHandler, QStyleOptionComplex - METHOD new() + METHOD new( ... ) METHOD dialWrapping() METHOD maximum() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg index a091e694bb..66421fbfa9 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionSpinBox INHERIT HbQtObjectHandler, QStyleOptionComplex - METHOD new() + METHOD new( ... ) METHOD buttonSymbols() METHOD frame() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionTab.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionTab.prg index ac5071aae9..7289882027 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionTab.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionTab.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionTab INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD cornerWidgets() METHOD icon() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg index a602e6d2b4..6267170952 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionTabBarBase INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD selectedTabRect() METHOD shape() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg index 04ffaf070f..eb7e2efe57 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionTabWidgetFrame INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD leftCornerWidgetSize() METHOD lineWidth() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg index 54ca3f4aed..96c3d00c51 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionTitleBar INHERIT HbQtObjectHandler, QStyleOptionComplex - METHOD new() + METHOD new( ... ) METHOD icon() METHOD text() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBar.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBar.prg index 05e4df437c..27378d1061 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionToolBar INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD features() METHOD lineWidth() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBox.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBox.prg index 37c8310e86..606c6f72a1 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionToolBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionToolBox INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD icon() METHOD text() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionToolButton.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionToolButton.prg index 598bc748ce..ed0dc6d62e 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionToolButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionToolButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionToolButton INHERIT HbQtObjectHandler, QStyleOptionComplex - METHOD new() + METHOD new( ... ) METHOD arrowType() METHOD features() diff --git a/harbour/contrib/hbqt/qtgui/TQStyleOptionViewItem.prg b/harbour/contrib/hbqt/qtgui/TQStyleOptionViewItem.prg index d37b6a4064..1eb186a327 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyleOptionViewItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyleOptionViewItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyleOptionViewItem INHERIT HbQtObjectHandler, QStyleOption - METHOD new() + METHOD new( ... ) METHOD decorationAlignment() METHOD decorationPosition() diff --git a/harbour/contrib/hbqt/qtgui/TQStylePainter.prg b/harbour/contrib/hbqt/qtgui/TQStylePainter.prg index e7420d16e2..d832155a4b 100644 --- a/harbour/contrib/hbqt/qtgui/TQStylePainter.prg +++ b/harbour/contrib/hbqt/qtgui/TQStylePainter.prg @@ -65,7 +65,7 @@ CREATE CLASS QStylePainter INHERIT HbQtObjectHandler, QPainter - METHOD new() + METHOD new( ... ) METHOD begin( pWidget ) METHOD begin_1( pPd, pWidget ) diff --git a/harbour/contrib/hbqt/qtgui/TQStyledItemDelegate.prg b/harbour/contrib/hbqt/qtgui/TQStyledItemDelegate.prg index 22bc80ce2b..622229682c 100644 --- a/harbour/contrib/hbqt/qtgui/TQStyledItemDelegate.prg +++ b/harbour/contrib/hbqt/qtgui/TQStyledItemDelegate.prg @@ -65,7 +65,7 @@ CREATE CLASS QStyledItemDelegate INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD createEditor( pParent, pOption, pIndex ) METHOD displayText( pValue, pLocale ) diff --git a/harbour/contrib/hbqt/qtgui/TQSyntaxHighlighter.prg b/harbour/contrib/hbqt/qtgui/TQSyntaxHighlighter.prg index e408fe3e65..19203926e7 100644 --- a/harbour/contrib/hbqt/qtgui/TQSyntaxHighlighter.prg +++ b/harbour/contrib/hbqt/qtgui/TQSyntaxHighlighter.prg @@ -65,7 +65,7 @@ CREATE CLASS QSyntaxHighlighter INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD document() METHOD setDocument( pDoc ) @@ -99,12 +99,12 @@ METHOD QSyntaxHighlighter:rehighlight() CREATE CLASS HBQSyntaxHighlighter INHERIT QSyntaxHighlighter - METHOD new() + METHOD new( ... ) METHOD configure( xObject ) - METHOD setHBCompilerDirectives( pDirectives, pFormat, pFont ) - METHOD setHBMultiLineCommentFormat( pFormat ) + METHOD setHBCompilerDirectives( pDirectives, pFormat ) METHOD setHBRule( cName, cPattern, pFormat ) METHOD setHBFormat( cName, pFormat ) + METHOD setHBMultiLineCommentFormat( pFormat ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQSystemTrayIcon.prg b/harbour/contrib/hbqt/qtgui/TQSystemTrayIcon.prg index 8655cb4ebf..3ab9477365 100644 --- a/harbour/contrib/hbqt/qtgui/TQSystemTrayIcon.prg +++ b/harbour/contrib/hbqt/qtgui/TQSystemTrayIcon.prg @@ -65,7 +65,7 @@ CREATE CLASS QSystemTrayIcon INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD contextMenu() METHOD geometry() diff --git a/harbour/contrib/hbqt/qtgui/TQTabBar.prg b/harbour/contrib/hbqt/qtgui/TQTabBar.prg index e6a61cbce3..50e3891ac7 100644 --- a/harbour/contrib/hbqt/qtgui/TQTabBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQTabBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QTabBar INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD addTab( cText ) METHOD count() diff --git a/harbour/contrib/hbqt/qtgui/TQTabWidget.prg b/harbour/contrib/hbqt/qtgui/TQTabWidget.prg index 4b0bb7c43f..d0a3d4bf8f 100644 --- a/harbour/contrib/hbqt/qtgui/TQTabWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQTabWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QTabWidget INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD addTab( pPage, cLabel ) METHOD addTab_1( pPage, cIcon, cLabel ) diff --git a/harbour/contrib/hbqt/qtgui/TQTableView.prg b/harbour/contrib/hbqt/qtgui/TQTableView.prg index 7d19cf3846..3d02b87d1d 100644 --- a/harbour/contrib/hbqt/qtgui/TQTableView.prg +++ b/harbour/contrib/hbqt/qtgui/TQTableView.prg @@ -65,7 +65,7 @@ CREATE CLASS QTableView INHERIT HbQtObjectHandler, QAbstractItemView - METHOD new() + METHOD new( ... ) METHOD clearSpans() METHOD columnAt( nX ) diff --git a/harbour/contrib/hbqt/qtgui/TQTableWidget.prg b/harbour/contrib/hbqt/qtgui/TQTableWidget.prg index 055442455f..0875e7973b 100644 --- a/harbour/contrib/hbqt/qtgui/TQTableWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQTableWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QTableWidget INHERIT HbQtObjectHandler, QTableView - METHOD new() + METHOD new( ... ) METHOD cellWidget( nRow, nColumn ) METHOD closePersistentEditor( pItem ) diff --git a/harbour/contrib/hbqt/qtgui/TQTableWidgetItem.prg b/harbour/contrib/hbqt/qtgui/TQTableWidgetItem.prg index 4696d69aab..47ce83b096 100644 --- a/harbour/contrib/hbqt/qtgui/TQTableWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQTableWidgetItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QTableWidgetItem INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD background() METHOD checkState() diff --git a/harbour/contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg b/harbour/contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg index 4b064a2499..85c9c37771 100644 --- a/harbour/contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg +++ b/harbour/contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg @@ -65,7 +65,7 @@ CREATE CLASS QTableWidgetSelectionRange INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD bottomRow() METHOD columnCount() diff --git a/harbour/contrib/hbqt/qtgui/TQTextBlock.prg b/harbour/contrib/hbqt/qtgui/TQTextBlock.prg index 1acfd13f06..34aa8eeb17 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextBlock.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextBlock.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextBlock INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD blockFormat() METHOD blockFormatIndex() diff --git a/harbour/contrib/hbqt/qtgui/TQTextBlockFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextBlockFormat.prg index da10ba3039..c7f585e2ef 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextBlockFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextBlockFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextBlockFormat INHERIT HbQtObjectHandler, QTextFormat - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD bottomMargin() diff --git a/harbour/contrib/hbqt/qtgui/TQTextBlockGroup.prg b/harbour/contrib/hbqt/qtgui/TQTextBlockGroup.prg index 7bca68214a..38c61c74bf 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextBlockGroup.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextBlockGroup.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextBlockGroup INHERIT HbQtObjectHandler, QTextObject - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQTextBrowser.prg b/harbour/contrib/hbqt/qtgui/TQTextBrowser.prg index 954fbfe3d3..ab956545d6 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextBrowser.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextBrowser.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextBrowser INHERIT HbQtObjectHandler, QTextEdit - METHOD new() + METHOD new( ... ) METHOD backwardHistoryCount() METHOD clearHistory() diff --git a/harbour/contrib/hbqt/qtgui/TQTextCharFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextCharFormat.prg index 4cddba5c51..6c31f3893e 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextCharFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextCharFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextCharFormat INHERIT HbQtObjectHandler, QTextFormat - METHOD new() + METHOD new( ... ) METHOD anchorHref() METHOD anchorNames() diff --git a/harbour/contrib/hbqt/qtgui/TQTextCursor.prg b/harbour/contrib/hbqt/qtgui/TQTextCursor.prg index dc5a1c5055..2d5a4851e7 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextCursor.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextCursor.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextCursor INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD anchor() METHOD atBlockEnd() diff --git a/harbour/contrib/hbqt/qtgui/TQTextDocument.prg b/harbour/contrib/hbqt/qtgui/TQTextDocument.prg index ef0a28a0df..c9f9c68aa5 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextDocument.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextDocument.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextDocument INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD addResource( nType, pName, pResource ) METHOD adjustSize() diff --git a/harbour/contrib/hbqt/qtgui/TQTextDocumentFragment.prg b/harbour/contrib/hbqt/qtgui/TQTextDocumentFragment.prg index c91b9e9a4a..7b4af24b09 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextDocumentFragment.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextDocumentFragment.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextDocumentFragment INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD isEmpty() METHOD toHtml( pEncoding ) diff --git a/harbour/contrib/hbqt/qtgui/TQTextDocumentWriter.prg b/harbour/contrib/hbqt/qtgui/TQTextDocumentWriter.prg index b910e08261..7c28307138 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextDocumentWriter.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextDocumentWriter.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextDocumentWriter INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD codec() METHOD device() diff --git a/harbour/contrib/hbqt/qtgui/TQTextEdit.prg b/harbour/contrib/hbqt/qtgui/TQTextEdit.prg index 45bb7abfcc..cb4f02219e 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextEdit.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextEdit.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextEdit INHERIT HbQtObjectHandler, QAbstractScrollArea - METHOD new() + METHOD new( ... ) METHOD acceptRichText() METHOD alignment() diff --git a/harbour/contrib/hbqt/qtgui/TQTextFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextFormat.prg index e06dc1cd4b..699c027db0 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextFormat INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD background() METHOD boolProperty( nPropertyId ) diff --git a/harbour/contrib/hbqt/qtgui/TQTextFragment.prg b/harbour/contrib/hbqt/qtgui/TQTextFragment.prg index ee5f2070db..8337ca6d37 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextFragment.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextFragment.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextFragment INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD charFormat() METHOD charFormatIndex() diff --git a/harbour/contrib/hbqt/qtgui/TQTextFrame.prg b/harbour/contrib/hbqt/qtgui/TQTextFrame.prg index aaec90d34e..3b2e90ce03 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextFrame.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextFrame.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextFrame INHERIT HbQtObjectHandler, QTextObject - METHOD new() + METHOD new( ... ) METHOD firstCursorPosition() METHOD firstPosition() diff --git a/harbour/contrib/hbqt/qtgui/TQTextFrameFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextFrameFormat.prg index d278ba6c0a..6b7f230995 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextFrameFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextFrameFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextFrameFormat INHERIT HbQtObjectHandler, QTextFormat - METHOD new() + METHOD new( ... ) METHOD border() METHOD borderBrush() diff --git a/harbour/contrib/hbqt/qtgui/TQTextImageFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextImageFormat.prg index 8b32ffd70b..2cf48a13c6 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextImageFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextImageFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextImageFormat INHERIT HbQtObjectHandler, QTextCharFormat - METHOD new() + METHOD new( ... ) METHOD height() METHOD isValid() diff --git a/harbour/contrib/hbqt/qtgui/TQTextInlineObject.prg b/harbour/contrib/hbqt/qtgui/TQTextInlineObject.prg index 4e57c56026..d1d6c78edb 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextInlineObject.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextInlineObject.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextInlineObject INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD ascent() METHOD descent() diff --git a/harbour/contrib/hbqt/qtgui/TQTextItem.prg b/harbour/contrib/hbqt/qtgui/TQTextItem.prg index c617e24f8b..ff545fd47e 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextItem INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD ascent() METHOD descent() diff --git a/harbour/contrib/hbqt/qtgui/TQTextLayout.prg b/harbour/contrib/hbqt/qtgui/TQTextLayout.prg index 77492d0a42..49703cf219 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextLayout INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD beginLayout() METHOD boundingRect() diff --git a/harbour/contrib/hbqt/qtgui/TQTextLength.prg b/harbour/contrib/hbqt/qtgui/TQTextLength.prg index 2972b0f1cb..008da6bfa6 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextLength.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextLength.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextLength INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD rawValue() METHOD type() diff --git a/harbour/contrib/hbqt/qtgui/TQTextLine.prg b/harbour/contrib/hbqt/qtgui/TQTextLine.prg index 49f7d6853f..37a6d0564f 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextLine.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextLine.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextLine INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD ascent() METHOD cursorToX( nCursorPos, nEdge ) diff --git a/harbour/contrib/hbqt/qtgui/TQTextListFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextListFormat.prg index 833f3ad7b2..9c90667bb0 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextListFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextListFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextListFormat INHERIT HbQtObjectHandler, QTextFormat - METHOD new() + METHOD new( ... ) METHOD indent() METHOD isValid() diff --git a/harbour/contrib/hbqt/qtgui/TQTextObject.prg b/harbour/contrib/hbqt/qtgui/TQTextObject.prg index 7b5a7e5ea5..435c42f700 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextObject.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextObject.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextObject INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD document() METHOD format() diff --git a/harbour/contrib/hbqt/qtgui/TQTextOption.prg b/harbour/contrib/hbqt/qtgui/TQTextOption.prg index 81ea17ed2d..f1955ed643 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextOption.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextOption.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextOption INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD flags() diff --git a/harbour/contrib/hbqt/qtgui/TQTextTableFormat.prg b/harbour/contrib/hbqt/qtgui/TQTextTableFormat.prg index 83e8ce3389..4dc5410bc2 100644 --- a/harbour/contrib/hbqt/qtgui/TQTextTableFormat.prg +++ b/harbour/contrib/hbqt/qtgui/TQTextTableFormat.prg @@ -65,7 +65,7 @@ CREATE CLASS QTextTableFormat INHERIT HbQtObjectHandler, QTextFrameFormat - METHOD new() + METHOD new( ... ) METHOD alignment() METHOD cellPadding() diff --git a/harbour/contrib/hbqt/qtgui/TQTimeEdit.prg b/harbour/contrib/hbqt/qtgui/TQTimeEdit.prg index 85d058c5ef..2dcefd811a 100644 --- a/harbour/contrib/hbqt/qtgui/TQTimeEdit.prg +++ b/harbour/contrib/hbqt/qtgui/TQTimeEdit.prg @@ -65,7 +65,7 @@ CREATE CLASS QTimeEdit INHERIT HbQtObjectHandler, QDateTimeEdit - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQToolBar.prg b/harbour/contrib/hbqt/qtgui/TQToolBar.prg index 251fb81fdb..a40545e60a 100644 --- a/harbour/contrib/hbqt/qtgui/TQToolBar.prg +++ b/harbour/contrib/hbqt/qtgui/TQToolBar.prg @@ -65,7 +65,7 @@ CREATE CLASS QToolBar INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD actionAt( pP ) METHOD actionAt_1( nX, nY ) diff --git a/harbour/contrib/hbqt/qtgui/TQToolBox.prg b/harbour/contrib/hbqt/qtgui/TQToolBox.prg index 235884d4d1..870dd1da3d 100644 --- a/harbour/contrib/hbqt/qtgui/TQToolBox.prg +++ b/harbour/contrib/hbqt/qtgui/TQToolBox.prg @@ -65,7 +65,7 @@ CREATE CLASS QToolBox INHERIT HbQtObjectHandler, QFrame - METHOD new() + METHOD new( ... ) METHOD addItem( pWidget, cIconSet, cText ) METHOD addItem_1( pW, cText ) diff --git a/harbour/contrib/hbqt/qtgui/TQToolButton.prg b/harbour/contrib/hbqt/qtgui/TQToolButton.prg index ae48f08813..0d0406af91 100644 --- a/harbour/contrib/hbqt/qtgui/TQToolButton.prg +++ b/harbour/contrib/hbqt/qtgui/TQToolButton.prg @@ -65,7 +65,7 @@ CREATE CLASS QToolButton INHERIT HbQtObjectHandler, QAbstractButton - METHOD new() + METHOD new( ... ) METHOD arrowType() METHOD autoRaise() diff --git a/harbour/contrib/hbqt/qtgui/TQTransform.prg b/harbour/contrib/hbqt/qtgui/TQTransform.prg index 4b140cde74..2e2bf8324b 100644 --- a/harbour/contrib/hbqt/qtgui/TQTransform.prg +++ b/harbour/contrib/hbqt/qtgui/TQTransform.prg @@ -65,7 +65,7 @@ CREATE CLASS QTransform INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD m11() METHOD m12() diff --git a/harbour/contrib/hbqt/qtgui/TQTreeView.prg b/harbour/contrib/hbqt/qtgui/TQTreeView.prg index ff93adf678..08f2ad7d29 100644 --- a/harbour/contrib/hbqt/qtgui/TQTreeView.prg +++ b/harbour/contrib/hbqt/qtgui/TQTreeView.prg @@ -65,7 +65,7 @@ CREATE CLASS QTreeView INHERIT HbQtObjectHandler, QAbstractItemView - METHOD new() + METHOD new( ... ) METHOD allColumnsShowFocus() METHOD autoExpandDelay() diff --git a/harbour/contrib/hbqt/qtgui/TQTreeWidget.prg b/harbour/contrib/hbqt/qtgui/TQTreeWidget.prg index a0219feb4f..5cdb1205ea 100644 --- a/harbour/contrib/hbqt/qtgui/TQTreeWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQTreeWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QTreeWidget INHERIT HbQtObjectHandler, QTreeView - METHOD new() + METHOD new( ... ) METHOD addTopLevelItem( pItem ) METHOD closePersistentEditor( pItem, nColumn ) diff --git a/harbour/contrib/hbqt/qtgui/TQTreeWidgetItem.prg b/harbour/contrib/hbqt/qtgui/TQTreeWidgetItem.prg index 26da1d687d..d4492cd643 100644 --- a/harbour/contrib/hbqt/qtgui/TQTreeWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQTreeWidgetItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QTreeWidgetItem INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD addChild( pChild ) METHOD background( nColumn ) diff --git a/harbour/contrib/hbqt/qtgui/TQVBoxLayout.prg b/harbour/contrib/hbqt/qtgui/TQVBoxLayout.prg index e3b4a7596c..26e9add082 100644 --- a/harbour/contrib/hbqt/qtgui/TQVBoxLayout.prg +++ b/harbour/contrib/hbqt/qtgui/TQVBoxLayout.prg @@ -65,7 +65,7 @@ CREATE CLASS QVBoxLayout INHERIT HbQtObjectHandler, QBoxLayout - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQValidator.prg b/harbour/contrib/hbqt/qtgui/TQValidator.prg index 9889b319c5..d5dfeba5d4 100644 --- a/harbour/contrib/hbqt/qtgui/TQValidator.prg +++ b/harbour/contrib/hbqt/qtgui/TQValidator.prg @@ -65,7 +65,7 @@ CREATE CLASS QValidator INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD locale() METHOD setLocale( pLocale ) diff --git a/harbour/contrib/hbqt/qtgui/TQWheelEvent.prg b/harbour/contrib/hbqt/qtgui/TQWheelEvent.prg index 544e5dceb2..53665794dd 100644 --- a/harbour/contrib/hbqt/qtgui/TQWheelEvent.prg +++ b/harbour/contrib/hbqt/qtgui/TQWheelEvent.prg @@ -65,7 +65,7 @@ CREATE CLASS QWheelEvent INHERIT HbQtObjectHandler, QInputEvent - METHOD new() + METHOD new( ... ) METHOD buttons() METHOD delta() diff --git a/harbour/contrib/hbqt/qtgui/TQWidget.prg b/harbour/contrib/hbqt/qtgui/TQWidget.prg index 4aaf2f0f78..2567c708bf 100644 --- a/harbour/contrib/hbqt/qtgui/TQWidget.prg +++ b/harbour/contrib/hbqt/qtgui/TQWidget.prg @@ -65,7 +65,7 @@ CREATE CLASS QWidget INHERIT HbQtObjectHandler, QObject, QPaintDevice - METHOD new() + METHOD new( ... ) METHOD acceptDrops() METHOD accessibleDescription() diff --git a/harbour/contrib/hbqt/qtgui/TQWidgetAction.prg b/harbour/contrib/hbqt/qtgui/TQWidgetAction.prg index df0220ff10..f306608eae 100644 --- a/harbour/contrib/hbqt/qtgui/TQWidgetAction.prg +++ b/harbour/contrib/hbqt/qtgui/TQWidgetAction.prg @@ -65,7 +65,7 @@ CREATE CLASS QWidgetAction INHERIT HbQtObjectHandler, QAction - METHOD new() + METHOD new( ... ) METHOD defaultWidget() METHOD releaseWidget( pWidget ) diff --git a/harbour/contrib/hbqt/qtgui/TQWidgetItem.prg b/harbour/contrib/hbqt/qtgui/TQWidgetItem.prg index 9f28ccff18..bfe00ba33d 100644 --- a/harbour/contrib/hbqt/qtgui/TQWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/TQWidgetItem.prg @@ -65,7 +65,7 @@ CREATE CLASS QWidgetItem INHERIT HbQtObjectHandler, QLayoutItem - METHOD new() + METHOD new( ... ) METHOD isEmpty() METHOD widget() diff --git a/harbour/contrib/hbqt/qtgui/TQWindowsStyle.prg b/harbour/contrib/hbqt/qtgui/TQWindowsStyle.prg index 26fb352e95..116a92971d 100644 --- a/harbour/contrib/hbqt/qtgui/TQWindowsStyle.prg +++ b/harbour/contrib/hbqt/qtgui/TQWindowsStyle.prg @@ -65,7 +65,7 @@ CREATE CLASS QWindowsStyle INHERIT HbQtObjectHandler, QCommonStyle - METHOD new() + METHOD new( ... ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtgui/TQWizard.prg b/harbour/contrib/hbqt/qtgui/TQWizard.prg index d519bb2628..5d93895d31 100644 --- a/harbour/contrib/hbqt/qtgui/TQWizard.prg +++ b/harbour/contrib/hbqt/qtgui/TQWizard.prg @@ -65,7 +65,7 @@ CREATE CLASS QWizard INHERIT HbQtObjectHandler, QDialog - METHOD new() + METHOD new( ... ) METHOD addPage( pPage ) METHOD button( nWhich ) diff --git a/harbour/contrib/hbqt/qtgui/TQWizardPage.prg b/harbour/contrib/hbqt/qtgui/TQWizardPage.prg index bdc6fb594f..14deced8bb 100644 --- a/harbour/contrib/hbqt/qtgui/TQWizardPage.prg +++ b/harbour/contrib/hbqt/qtgui/TQWizardPage.prg @@ -65,7 +65,7 @@ CREATE CLASS QWizardPage INHERIT HbQtObjectHandler, QWidget - METHOD new() + METHOD new( ... ) METHOD buttonText( nWhich ) METHOD cleanupPage() diff --git a/harbour/contrib/hbqt/qth/QSyntaxHighlighter.qth b/harbour/contrib/hbqt/qth/QSyntaxHighlighter.qth index dfc8afc7ad..75add08a67 100644 --- a/harbour/contrib/hbqt/qth/QSyntaxHighlighter.qth +++ b/harbour/contrib/hbqt/qth/QSyntaxHighlighter.qth @@ -65,12 +65,12 @@ New = CREATE CLASS HBQSyntaxHighlighter INHERIT QSyntaxHighlighter - METHOD new() + METHOD new( ... ) METHOD configure( xObject ) - METHOD setHBCompilerDirectives( pDirectives, pFormat, pFont ) - METHOD setHBMultiLineCommentFormat( pFormat ) + METHOD setHBCompilerDirectives( pDirectives, pFormat ) METHOD setHBRule( cName, cPattern, pFormat ) METHOD setHBFormat( cName, pFormat ) + METHOD setHBMultiLineCommentFormat( pFormat ) ENDCLASS diff --git a/harbour/contrib/hbqt/qtnetwork/TQFtp.prg b/harbour/contrib/hbqt/qtnetwork/TQFtp.prg index b5e9f83e1e..9f0ab0f1cd 100644 --- a/harbour/contrib/hbqt/qtnetwork/TQFtp.prg +++ b/harbour/contrib/hbqt/qtnetwork/TQFtp.prg @@ -65,7 +65,7 @@ CREATE CLASS QFtp INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD bytesAvailable() METHOD cd( cDir ) diff --git a/harbour/contrib/hbqt/qtnetwork/TQHttp.prg b/harbour/contrib/hbqt/qtnetwork/TQHttp.prg index 80fe13d60a..194ee3a050 100644 --- a/harbour/contrib/hbqt/qtnetwork/TQHttp.prg +++ b/harbour/contrib/hbqt/qtnetwork/TQHttp.prg @@ -65,7 +65,7 @@ CREATE CLASS QHttp INHERIT HbQtObjectHandler, QObject - METHOD new() + METHOD new( ... ) METHOD bytesAvailable() METHOD clearPendingRequests() diff --git a/harbour/contrib/hbqt/qtnetwork/TQHttpHeader.prg b/harbour/contrib/hbqt/qtnetwork/TQHttpHeader.prg index 4047b3c124..7fa2b7baf0 100644 --- a/harbour/contrib/hbqt/qtnetwork/TQHttpHeader.prg +++ b/harbour/contrib/hbqt/qtnetwork/TQHttpHeader.prg @@ -65,7 +65,7 @@ CREATE CLASS QHttpHeader INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD addValue( cKey, cValue ) METHOD allValues( cKey ) diff --git a/harbour/contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg b/harbour/contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg index cfebd60007..05157046c4 100644 --- a/harbour/contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg +++ b/harbour/contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg @@ -65,7 +65,7 @@ CREATE CLASS QHttpRequestHeader INHERIT HbQtObjectHandler, QHttpHeader - METHOD new() + METHOD new( ... ) METHOD majorVersion() METHOD method() diff --git a/harbour/contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg b/harbour/contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg index 2dd49355a5..9a1ce0e6d6 100644 --- a/harbour/contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg +++ b/harbour/contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg @@ -65,7 +65,7 @@ CREATE CLASS QHttpResponseHeader INHERIT HbQtObjectHandler, QHttpHeader - METHOD new() + METHOD new( ... ) METHOD majorVersion() METHOD minorVersion() diff --git a/harbour/contrib/hbqt/qtnetwork/TQNetworkRequest.prg b/harbour/contrib/hbqt/qtnetwork/TQNetworkRequest.prg index 046dd95265..3a51a08103 100644 --- a/harbour/contrib/hbqt/qtnetwork/TQNetworkRequest.prg +++ b/harbour/contrib/hbqt/qtnetwork/TQNetworkRequest.prg @@ -65,7 +65,7 @@ CREATE CLASS QNetworkRequest INHERIT HbQtObjectHandler - METHOD new() + METHOD new( ... ) METHOD attribute( nCode, pDefaultValue ) METHOD hasRawHeader( pHeaderName ) diff --git a/harbour/contrib/hbxbp/Makefile b/harbour/contrib/hbxbp/Makefile index c929019be1..27c3059ea1 100644 --- a/harbour/contrib/hbxbp/Makefile +++ b/harbour/contrib/hbxbp/Makefile @@ -9,45 +9,45 @@ include $(TOP)$(ROOT)config/global.mk LIBNAME := hbxbp PRG_SOURCES := \ - xbpgeneric.prg \ - xbpdialog.prg \ - xbpwindow.prg \ - xbpparthandler.prg \ - xbpmenubar.prg \ - xbptoolbar.prg \ - xbppushbutton.prg \ - xbpdataref.prg \ - xbpcheckbox.prg \ xbp3state.prg \ - xbpradiobutton.prg \ - xbptabpage.prg \ - xbplistbox.prg \ - xbpstatusbar.prg \ - xbpscrollbar.prg \ - xbpsle.prg \ - xbpmle.prg \ - xbpspinbutton.prg \ - xbpcombobox.prg \ - xbptreeview.prg \ - xbpstyle.prg \ xbpappevent.prg \ - xbpstatic.prg \ - xbphtmlviewer.prg \ + xbpbitmap.prg \ + xbpbrowse.prg \ + xbpcheckbox.prg \ + xbpcombobox.prg \ + xbpdataref.prg \ + xbpdialog.prg \ xbpfiledialog.prg \ xbpfontdialog.prg \ - xbpbitmap.prg \ - xbprtf.prg \ + xbpgeneric.prg \ + xbphtmlviewer.prg \ + xbplistbox.prg \ + xbpmenubar.prg \ + xbpmle.prg \ + xbpparthandler.prg \ xbppresspace.prg \ - xbpprinter.prg \ xbpprintdialog.prg \ - xbpbrowse.prg \ + xbpprinter.prg \ + xbppushbutton.prg \ xbpqtuiloader.prg \ + xbpradiobutton.prg \ + xbprtf.prg \ + xbpscrollbar.prg \ + xbpsle.prg \ + xbpspinbutton.prg \ + xbpstatic.prg \ + xbpstatusbar.prg \ + xbpstyle.prg \ + xbptabpage.prg \ + xbptoolbar.prg \ + xbptreeview.prg \ + xbpwindow.prg \ PRG_HEADERS := \ - xbp.ch \ - xbpdev.ch \ appevent.ch \ gra.ch \ + xbp.ch \ + xbpdev.ch \ # Try to be in sync with hbqt, but not too hard, since this # lib doesn't need QT external component directly.