diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 5d74deb03d..beef9f5b9c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,33 @@ The license applies to all entries newer than 2009-04-28. */ +2010-10-19 09:19 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbqt/qtgui/hbqtgui.ch + + Added: more constants. + + * contrib/hbqt/qtcore/hbqt_hbqslots.cpp + * contrib/hbqt/qtcore/hbqt_hbqslots.h + % Reverted: back to signals previous protocol until new is mature enough. + + * contrib/hbqt/qtcore/hbqtcore.hbx + * contrib/hbqt/qtgui/hbqtgui.hbx + * contrib/hbqt/qtnetwork/hbqtnetwork.hbx + * contrib/hbqt/qtuitools/hbqtuitools.hbx + * Re-generated. + + * contrib/hbqt/qt*/g/*.prg + * Re-generated after effected changes in hbqtgen.prg. + + * contrib/hbqt/qtgui/qth/QMainWindow.qth + ! More children detached. + + * contrib/hbide/idedocks.prg + ! A small fix. + + * contrib/hbide/ideprojmanager.prg + ! Fixed: Launching a project from main-menu was generating a RTE + when there was no project defined, repoted by Frank. + 2010-10-18 14:10 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/idemisc.prg + Applied: patch from Viktor. Now .hbm files are available inside diff --git a/harbour/contrib/hbide/idedocks.prg b/harbour/contrib/hbide/idedocks.prg index 5ddba2f743..ef7765f839 100644 --- a/harbour/contrib/hbide/idedocks.prg +++ b/harbour/contrib/hbide/idedocks.prg @@ -443,10 +443,13 @@ METHOD IdeDocks:buildSystemTray() METHOD IdeDocks:execEvent( cEvent, p, p1 ) LOCAL qEvent, qMime, qList, qUrl, i, n, oEdit, aMenu - +#if 0 +IF "visibility" $ cEvent +HB_TRACE( HB_TR_ALWAYS, cEvent, p, p1:isVisible() ) +ENDIF +#endif SWITCH cEvent CASE "dockReportsManager_visibilityChanged" - IF p; p1:raise() ; ENDIF IF ! p .AND. ! p1:isVisible() p1:raise() ENDIF diff --git a/harbour/contrib/hbide/ideprojmanager.prg b/harbour/contrib/hbide/ideprojmanager.prg index 17977fabf9..f0f62d03bd 100644 --- a/harbour/contrib/hbide/ideprojmanager.prg +++ b/harbour/contrib/hbide/ideprojmanager.prg @@ -1614,6 +1614,9 @@ METHOD IdeProjManager:launchProject( cProject, cExe ) ELSE cTargetFN := cExe ENDIF + IF empty( cTargetFN ) + cTargetFN := "" + ENDIF cTargetFN := hbide_pathToOSPath( cTargetFN ) IF ! hb_FileExists( cTargetFN ) diff --git a/harbour/contrib/hbqt/qscintilla/g/THBQsciScintilla.prg b/harbour/contrib/hbqt/qscintilla/g/THBQsciScintilla.prg index 948557c580..36d3cfa706 100644 --- a/harbour/contrib/hbqt/qscintilla/g/THBQsciScintilla.prg +++ b/harbour/contrib/hbqt/qscintilla/g/THBQsciScintilla.prg @@ -98,9 +98,6 @@ FUNCTION HBQsciScintilla( ... ) RETURN HB_HBQsciScintilla():new( ... ) -FUNCTION HBQsciScintillaFrom( ... ) - RETURN HB_HBQsciScintilla():from( ... ) - FUNCTION HBQsciScintillaFromPointer( ... ) RETURN HB_HBQsciScintilla():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciAPIs.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciAPIs.prg index a207780ba1..239452ddc7 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciAPIs.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciAPIs.prg @@ -98,9 +98,6 @@ FUNCTION QsciAPIs( ... ) RETURN HB_QsciAPIs():new( ... ) -FUNCTION QsciAPIsFrom( ... ) - RETURN HB_QsciAPIs():from( ... ) - FUNCTION QsciAPIsFromPointer( ... ) RETURN HB_QsciAPIs():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciAbstractAPIs.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciAbstractAPIs.prg index ba376fdf33..a84f0e5425 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciAbstractAPIs.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciAbstractAPIs.prg @@ -98,9 +98,6 @@ FUNCTION QsciAbstractAPIs( ... ) RETURN HB_QsciAbstractAPIs():new( ... ) -FUNCTION QsciAbstractAPIsFrom( ... ) - RETURN HB_QsciAbstractAPIs():from( ... ) - FUNCTION QsciAbstractAPIsFromPointer( ... ) RETURN HB_QsciAbstractAPIs():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciCommand.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciCommand.prg index af9d5f644e..730169d165 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciCommand.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciCommand.prg @@ -98,9 +98,6 @@ FUNCTION QsciCommand( ... ) RETURN HB_QsciCommand():new( ... ) -FUNCTION QsciCommandFrom( ... ) - RETURN HB_QsciCommand():from( ... ) - FUNCTION QsciCommandFromPointer( ... ) RETURN HB_QsciCommand():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciCommandSet.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciCommandSet.prg index ad00385aae..461ddd0070 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciCommandSet.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciCommandSet.prg @@ -98,9 +98,6 @@ FUNCTION QsciCommandSet( ... ) RETURN HB_QsciCommandSet():new( ... ) -FUNCTION QsciCommandSetFrom( ... ) - RETURN HB_QsciCommandSet():from( ... ) - FUNCTION QsciCommandSetFromPointer( ... ) RETURN HB_QsciCommandSet():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciDocument.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciDocument.prg index 1770062a51..96ef11a3ad 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciDocument.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciDocument.prg @@ -98,9 +98,6 @@ FUNCTION QsciDocument( ... ) RETURN HB_QsciDocument():new( ... ) -FUNCTION QsciDocumentFrom( ... ) - RETURN HB_QsciDocument():from( ... ) - FUNCTION QsciDocumentFromPointer( ... ) RETURN HB_QsciDocument():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciLexer.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciLexer.prg index f9be544502..8fa215f691 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciLexer.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciLexer.prg @@ -98,9 +98,6 @@ FUNCTION QsciLexer( ... ) RETURN HB_QsciLexer():new( ... ) -FUNCTION QsciLexerFrom( ... ) - RETURN HB_QsciLexer():from( ... ) - FUNCTION QsciLexerFromPointer( ... ) RETURN HB_QsciLexer():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciLexerCPP.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciLexerCPP.prg index 1a3d268897..b883dc7a9c 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciLexerCPP.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciLexerCPP.prg @@ -98,9 +98,6 @@ FUNCTION QsciLexerCPP( ... ) RETURN HB_QsciLexerCPP():new( ... ) -FUNCTION QsciLexerCPPFrom( ... ) - RETURN HB_QsciLexerCPP():from( ... ) - FUNCTION QsciLexerCPPFromPointer( ... ) RETURN HB_QsciLexerCPP():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciLexerFlagship.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciLexerFlagship.prg index d1b5967201..cc25d04a61 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciLexerFlagship.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciLexerFlagship.prg @@ -98,9 +98,6 @@ FUNCTION QsciLexerFlagship( ... ) RETURN HB_QsciLexerFlagship():new( ... ) -FUNCTION QsciLexerFlagshipFrom( ... ) - RETURN HB_QsciLexerFlagship():from( ... ) - FUNCTION QsciLexerFlagshipFromPointer( ... ) RETURN HB_QsciLexerFlagship():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciScintilla.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciScintilla.prg index 57b17dd60a..ec5438d499 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciScintilla.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciScintilla.prg @@ -98,9 +98,6 @@ FUNCTION QsciScintilla( ... ) RETURN HB_QsciScintilla():new( ... ) -FUNCTION QsciScintillaFrom( ... ) - RETURN HB_QsciScintilla():from( ... ) - FUNCTION QsciScintillaFromPointer( ... ) RETURN HB_QsciScintilla():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciStyle.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciStyle.prg index f6ca372dc1..676f97e7f0 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciStyle.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciStyle.prg @@ -98,9 +98,6 @@ FUNCTION QsciStyle( ... ) RETURN HB_QsciStyle():new( ... ) -FUNCTION QsciStyleFrom( ... ) - RETURN HB_QsciStyle():from( ... ) - FUNCTION QsciStyleFromPointer( ... ) RETURN HB_QsciStyle():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qscintilla/g/TQsciStyledText.prg b/harbour/contrib/hbqt/qscintilla/g/TQsciStyledText.prg index 91f8e3e3c3..b6a341d18b 100644 --- a/harbour/contrib/hbqt/qscintilla/g/TQsciStyledText.prg +++ b/harbour/contrib/hbqt/qscintilla/g/TQsciStyledText.prg @@ -98,9 +98,6 @@ FUNCTION QsciStyledText( ... ) RETURN HB_QsciStyledText():new( ... ) -FUNCTION QsciStyledTextFrom( ... ) - RETURN HB_QsciStyledText():from( ... ) - FUNCTION QsciStyledTextFromPointer( ... ) RETURN HB_QsciStyledText():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/THBQEvents.prg b/harbour/contrib/hbqt/qtcore/g/THBQEvents.prg index a6d615b093..2b472ccc48 100644 --- a/harbour/contrib/hbqt/qtcore/g/THBQEvents.prg +++ b/harbour/contrib/hbqt/qtcore/g/THBQEvents.prg @@ -98,9 +98,6 @@ FUNCTION HBQEvents( ... ) RETURN HB_HBQEvents():new( ... ) -FUNCTION HBQEventsFrom( ... ) - RETURN HB_HBQEvents():from( ... ) - FUNCTION HBQEventsFromPointer( ... ) RETURN HB_HBQEvents():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/THBQSlots.prg b/harbour/contrib/hbqt/qtcore/g/THBQSlots.prg index 2d6e3e15a3..0096923c26 100644 --- a/harbour/contrib/hbqt/qtcore/g/THBQSlots.prg +++ b/harbour/contrib/hbqt/qtcore/g/THBQSlots.prg @@ -98,9 +98,6 @@ FUNCTION HBQSlots( ... ) RETURN HB_HBQSlots():new( ... ) -FUNCTION HBQSlotsFrom( ... ) - RETURN HB_HBQSlots():from( ... ) - FUNCTION HBQSlotsFromPointer( ... ) RETURN HB_HBQSlots():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/THBQString.prg b/harbour/contrib/hbqt/qtcore/g/THBQString.prg index 279041b4c0..633e907b42 100644 --- a/harbour/contrib/hbqt/qtcore/g/THBQString.prg +++ b/harbour/contrib/hbqt/qtcore/g/THBQString.prg @@ -98,9 +98,6 @@ FUNCTION HBQString( ... ) RETURN HB_HBQString():new( ... ) -FUNCTION HBQStringFrom( ... ) - RETURN HB_HBQString():from( ... ) - FUNCTION HBQStringFromPointer( ... ) RETURN HB_HBQString():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQAbstractItemModel.prg b/harbour/contrib/hbqt/qtcore/g/TQAbstractItemModel.prg index 5ddc317b17..779a82646a 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQAbstractItemModel.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQAbstractItemModel.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractItemModel( ... ) RETURN HB_QAbstractItemModel():new( ... ) -FUNCTION QAbstractItemModelFrom( ... ) - RETURN HB_QAbstractItemModel():from( ... ) - FUNCTION QAbstractItemModelFromPointer( ... ) RETURN HB_QAbstractItemModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQAbstractListModel.prg b/harbour/contrib/hbqt/qtcore/g/TQAbstractListModel.prg index a6712c00a5..112c948ab0 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQAbstractListModel.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQAbstractListModel.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractListModel( ... ) RETURN HB_QAbstractListModel():new( ... ) -FUNCTION QAbstractListModelFrom( ... ) - RETURN HB_QAbstractListModel():from( ... ) - FUNCTION QAbstractListModelFromPointer( ... ) RETURN HB_QAbstractListModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQAbstractTableModel.prg b/harbour/contrib/hbqt/qtcore/g/TQAbstractTableModel.prg index 656085691b..cbccb3fd0d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQAbstractTableModel.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQAbstractTableModel.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractTableModel( ... ) RETURN HB_QAbstractTableModel():new( ... ) -FUNCTION QAbstractTableModelFrom( ... ) - RETURN HB_QAbstractTableModel():from( ... ) - FUNCTION QAbstractTableModelFromPointer( ... ) RETURN HB_QAbstractTableModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQBitArray.prg b/harbour/contrib/hbqt/qtcore/g/TQBitArray.prg index 556b55ffde..208ae2ae9a 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQBitArray.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQBitArray.prg @@ -98,9 +98,6 @@ FUNCTION QBitArray( ... ) RETURN HB_QBitArray():new( ... ) -FUNCTION QBitArrayFrom( ... ) - RETURN HB_QBitArray():from( ... ) - FUNCTION QBitArrayFromPointer( ... ) RETURN HB_QBitArray():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQBuffer.prg b/harbour/contrib/hbqt/qtcore/g/TQBuffer.prg index 20534bff4f..ffa2e9489d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQBuffer.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQBuffer.prg @@ -98,9 +98,6 @@ FUNCTION QBuffer( ... ) RETURN HB_QBuffer():new( ... ) -FUNCTION QBufferFrom( ... ) - RETURN HB_QBuffer():from( ... ) - FUNCTION QBufferFromPointer( ... ) RETURN HB_QBuffer():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQByteArray.prg b/harbour/contrib/hbqt/qtcore/g/TQByteArray.prg index 31242bcf4c..a599d71c5d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQByteArray.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQByteArray.prg @@ -98,9 +98,6 @@ FUNCTION QByteArray( ... ) RETURN HB_QByteArray():new( ... ) -FUNCTION QByteArrayFrom( ... ) - RETURN HB_QByteArray():from( ... ) - FUNCTION QByteArrayFromPointer( ... ) RETURN HB_QByteArray():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQChar.prg b/harbour/contrib/hbqt/qtcore/g/TQChar.prg index 573d8af743..fbafc2d613 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQChar.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQChar.prg @@ -98,9 +98,6 @@ FUNCTION QChar( ... ) RETURN HB_QChar():new( ... ) -FUNCTION QCharFrom( ... ) - RETURN HB_QChar():from( ... ) - FUNCTION QCharFromPointer( ... ) RETURN HB_QChar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQCoreApplication.prg b/harbour/contrib/hbqt/qtcore/g/TQCoreApplication.prg index e18eab97a9..64b2b700fe 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQCoreApplication.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQCoreApplication.prg @@ -98,9 +98,6 @@ FUNCTION QCoreApplication( ... ) RETURN HB_QCoreApplication():new( ... ) -FUNCTION QCoreApplicationFrom( ... ) - RETURN HB_QCoreApplication():from( ... ) - FUNCTION QCoreApplicationFromPointer( ... ) RETURN HB_QCoreApplication():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQDataStream.prg b/harbour/contrib/hbqt/qtcore/g/TQDataStream.prg index 503615b90a..60cf9a6c93 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQDataStream.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQDataStream.prg @@ -98,9 +98,6 @@ FUNCTION QDataStream( ... ) RETURN HB_QDataStream():new( ... ) -FUNCTION QDataStreamFrom( ... ) - RETURN HB_QDataStream():from( ... ) - FUNCTION QDataStreamFromPointer( ... ) RETURN HB_QDataStream():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQDate.prg b/harbour/contrib/hbqt/qtcore/g/TQDate.prg index e7116fa265..8328f7e317 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQDate.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQDate.prg @@ -98,9 +98,6 @@ FUNCTION QDate( ... ) RETURN HB_QDate():new( ... ) -FUNCTION QDateFrom( ... ) - RETURN HB_QDate():from( ... ) - FUNCTION QDateFromPointer( ... ) RETURN HB_QDate():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQDateTime.prg b/harbour/contrib/hbqt/qtcore/g/TQDateTime.prg index 1c2d3f1041..5e9089b01a 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQDateTime.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQDateTime.prg @@ -98,9 +98,6 @@ FUNCTION QDateTime( ... ) RETURN HB_QDateTime():new( ... ) -FUNCTION QDateTimeFrom( ... ) - RETURN HB_QDateTime():from( ... ) - FUNCTION QDateTimeFromPointer( ... ) RETURN HB_QDateTime():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQDir.prg b/harbour/contrib/hbqt/qtcore/g/TQDir.prg index 6df4725a8d..484f1eec79 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQDir.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQDir.prg @@ -98,9 +98,6 @@ FUNCTION QDir( ... ) RETURN HB_QDir():new( ... ) -FUNCTION QDirFrom( ... ) - RETURN HB_QDir():from( ... ) - FUNCTION QDirFromPointer( ... ) RETURN HB_QDir():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQEvent.prg b/harbour/contrib/hbqt/qtcore/g/TQEvent.prg index 2b30689011..b7f6392fe8 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQEvent.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQEvent.prg @@ -98,9 +98,6 @@ FUNCTION QEvent( ... ) RETURN HB_QEvent():new( ... ) -FUNCTION QEventFrom( ... ) - RETURN HB_QEvent():from( ... ) - FUNCTION QEventFromPointer( ... ) RETURN HB_QEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQEventLoop.prg b/harbour/contrib/hbqt/qtcore/g/TQEventLoop.prg index 2e3c2d6d3b..49be57daa6 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQEventLoop.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQEventLoop.prg @@ -98,9 +98,6 @@ FUNCTION QEventLoop( ... ) RETURN HB_QEventLoop():new( ... ) -FUNCTION QEventLoopFrom( ... ) - RETURN HB_QEventLoop():from( ... ) - FUNCTION QEventLoopFromPointer( ... ) RETURN HB_QEventLoop():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQFile.prg b/harbour/contrib/hbqt/qtcore/g/TQFile.prg index ef3baf51f6..2255479c49 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQFile.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQFile.prg @@ -98,9 +98,6 @@ FUNCTION QFile( ... ) RETURN HB_QFile():new( ... ) -FUNCTION QFileFrom( ... ) - RETURN HB_QFile():from( ... ) - FUNCTION QFileFromPointer( ... ) RETURN HB_QFile():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQFileInfo.prg b/harbour/contrib/hbqt/qtcore/g/TQFileInfo.prg index 832e8be39a..b14d61631e 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQFileInfo.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQFileInfo.prg @@ -98,9 +98,6 @@ FUNCTION QFileInfo( ... ) RETURN HB_QFileInfo():new( ... ) -FUNCTION QFileInfoFrom( ... ) - RETURN HB_QFileInfo():from( ... ) - FUNCTION QFileInfoFromPointer( ... ) RETURN HB_QFileInfo():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQGenericArgument.prg b/harbour/contrib/hbqt/qtcore/g/TQGenericArgument.prg index ea8225f936..9c9884cd08 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQGenericArgument.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQGenericArgument.prg @@ -98,9 +98,6 @@ FUNCTION QGenericArgument( ... ) RETURN HB_QGenericArgument():new( ... ) -FUNCTION QGenericArgumentFrom( ... ) - RETURN HB_QGenericArgument():from( ... ) - FUNCTION QGenericArgumentFromPointer( ... ) RETURN HB_QGenericArgument():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQGenericReturnArgument.prg b/harbour/contrib/hbqt/qtcore/g/TQGenericReturnArgument.prg index cc598c4dda..7cd21fbb1e 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQGenericReturnArgument.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQGenericReturnArgument.prg @@ -98,9 +98,6 @@ FUNCTION QGenericReturnArgument( ... ) RETURN HB_QGenericReturnArgument():new( ... ) -FUNCTION QGenericReturnArgumentFrom( ... ) - RETURN HB_QGenericReturnArgument():from( ... ) - FUNCTION QGenericReturnArgumentFromPointer( ... ) RETURN HB_QGenericReturnArgument():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQIODevice.prg b/harbour/contrib/hbqt/qtcore/g/TQIODevice.prg index c1f0269bfe..fdc823a9bf 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQIODevice.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQIODevice.prg @@ -98,9 +98,6 @@ FUNCTION QIODevice( ... ) RETURN HB_QIODevice():new( ... ) -FUNCTION QIODeviceFrom( ... ) - RETURN HB_QIODevice():from( ... ) - FUNCTION QIODeviceFromPointer( ... ) RETURN HB_QIODevice():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQLatin1Char.prg b/harbour/contrib/hbqt/qtcore/g/TQLatin1Char.prg index 832838f1d1..5ffcfea5bc 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQLatin1Char.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQLatin1Char.prg @@ -98,9 +98,6 @@ FUNCTION QLatin1Char( ... ) RETURN HB_QLatin1Char():new( ... ) -FUNCTION QLatin1CharFrom( ... ) - RETURN HB_QLatin1Char():from( ... ) - FUNCTION QLatin1CharFromPointer( ... ) RETURN HB_QLatin1Char():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQLatin1String.prg b/harbour/contrib/hbqt/qtcore/g/TQLatin1String.prg index e783f44ee2..96f6b22c6a 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQLatin1String.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQLatin1String.prg @@ -98,9 +98,6 @@ FUNCTION QLatin1String( ... ) RETURN HB_QLatin1String():new( ... ) -FUNCTION QLatin1StringFrom( ... ) - RETURN HB_QLatin1String():from( ... ) - FUNCTION QLatin1StringFromPointer( ... ) RETURN HB_QLatin1String():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQLine.prg b/harbour/contrib/hbqt/qtcore/g/TQLine.prg index 5767475be9..0c122657a7 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQLine.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQLine.prg @@ -98,9 +98,6 @@ FUNCTION QLine( ... ) RETURN HB_QLine():new( ... ) -FUNCTION QLineFrom( ... ) - RETURN HB_QLine():from( ... ) - FUNCTION QLineFromPointer( ... ) RETURN HB_QLine():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQLineF.prg b/harbour/contrib/hbqt/qtcore/g/TQLineF.prg index 6634f2212f..6a0ab4a7f2 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQLineF.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQLineF.prg @@ -98,9 +98,6 @@ FUNCTION QLineF( ... ) RETURN HB_QLineF():new( ... ) -FUNCTION QLineFFrom( ... ) - RETURN HB_QLineF():from( ... ) - FUNCTION QLineFFromPointer( ... ) RETURN HB_QLineF():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQList.prg b/harbour/contrib/hbqt/qtcore/g/TQList.prg index e9bd141c17..b27e0dc00d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQList.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQList.prg @@ -98,9 +98,6 @@ FUNCTION QList( ... ) RETURN HB_QList():new( ... ) -FUNCTION QListFrom( ... ) - RETURN HB_QList():from( ... ) - FUNCTION QListFromPointer( ... ) RETURN HB_QList():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQLocale.prg b/harbour/contrib/hbqt/qtcore/g/TQLocale.prg index 8caf22ea11..7a9010cb7d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQLocale.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQLocale.prg @@ -98,9 +98,6 @@ FUNCTION QLocale( ... ) RETURN HB_QLocale():new( ... ) -FUNCTION QLocaleFrom( ... ) - RETURN HB_QLocale():from( ... ) - FUNCTION QLocaleFromPointer( ... ) RETURN HB_QLocale():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMetaClassInfo.prg b/harbour/contrib/hbqt/qtcore/g/TQMetaClassInfo.prg index 04fad2e783..e400046c6b 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMetaClassInfo.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMetaClassInfo.prg @@ -98,9 +98,6 @@ FUNCTION QMetaClassInfo( ... ) RETURN HB_QMetaClassInfo():new( ... ) -FUNCTION QMetaClassInfoFrom( ... ) - RETURN HB_QMetaClassInfo():from( ... ) - FUNCTION QMetaClassInfoFromPointer( ... ) RETURN HB_QMetaClassInfo():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMetaEnum.prg b/harbour/contrib/hbqt/qtcore/g/TQMetaEnum.prg index ce45186db7..e0bce47c68 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMetaEnum.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMetaEnum.prg @@ -98,9 +98,6 @@ FUNCTION QMetaEnum( ... ) RETURN HB_QMetaEnum():new( ... ) -FUNCTION QMetaEnumFrom( ... ) - RETURN HB_QMetaEnum():from( ... ) - FUNCTION QMetaEnumFromPointer( ... ) RETURN HB_QMetaEnum():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMetaMethod.prg b/harbour/contrib/hbqt/qtcore/g/TQMetaMethod.prg index 2808af3fce..57dc1b5cf8 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMetaMethod.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMetaMethod.prg @@ -98,9 +98,6 @@ FUNCTION QMetaMethod( ... ) RETURN HB_QMetaMethod():new( ... ) -FUNCTION QMetaMethodFrom( ... ) - RETURN HB_QMetaMethod():from( ... ) - FUNCTION QMetaMethodFromPointer( ... ) RETURN HB_QMetaMethod():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMetaObject.prg b/harbour/contrib/hbqt/qtcore/g/TQMetaObject.prg index 08192bbd3f..ecb1b757ef 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMetaObject.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMetaObject.prg @@ -98,9 +98,6 @@ FUNCTION QMetaObject( ... ) RETURN HB_QMetaObject():new( ... ) -FUNCTION QMetaObjectFrom( ... ) - RETURN HB_QMetaObject():from( ... ) - FUNCTION QMetaObjectFromPointer( ... ) RETURN HB_QMetaObject():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMetaProperty.prg b/harbour/contrib/hbqt/qtcore/g/TQMetaProperty.prg index fedf5b9a22..e42605f9fc 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMetaProperty.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMetaProperty.prg @@ -98,9 +98,6 @@ FUNCTION QMetaProperty( ... ) RETURN HB_QMetaProperty():new( ... ) -FUNCTION QMetaPropertyFrom( ... ) - RETURN HB_QMetaProperty():from( ... ) - FUNCTION QMetaPropertyFromPointer( ... ) RETURN HB_QMetaProperty():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMetaType.prg b/harbour/contrib/hbqt/qtcore/g/TQMetaType.prg index cd20552577..f42991ccaa 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMetaType.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMetaType.prg @@ -98,9 +98,6 @@ FUNCTION QMetaType( ... ) RETURN HB_QMetaType():new( ... ) -FUNCTION QMetaTypeFrom( ... ) - RETURN HB_QMetaType():from( ... ) - FUNCTION QMetaTypeFromPointer( ... ) RETURN HB_QMetaType():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQMimeData.prg b/harbour/contrib/hbqt/qtcore/g/TQMimeData.prg index e78414b88d..a54c3f4163 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQMimeData.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQMimeData.prg @@ -98,9 +98,6 @@ FUNCTION QMimeData( ... ) RETURN HB_QMimeData():new( ... ) -FUNCTION QMimeDataFrom( ... ) - RETURN HB_QMimeData():from( ... ) - FUNCTION QMimeDataFromPointer( ... ) RETURN HB_QMimeData():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQModelIndex.prg b/harbour/contrib/hbqt/qtcore/g/TQModelIndex.prg index c1e6d3b732..f5b9d37f87 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQModelIndex.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQModelIndex.prg @@ -98,9 +98,6 @@ FUNCTION QModelIndex( ... ) RETURN HB_QModelIndex():new( ... ) -FUNCTION QModelIndexFrom( ... ) - RETURN HB_QModelIndex():from( ... ) - FUNCTION QModelIndexFromPointer( ... ) RETURN HB_QModelIndex():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQObject.prg b/harbour/contrib/hbqt/qtcore/g/TQObject.prg index 297aa96fe4..1362b9351e 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQObject.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQObject.prg @@ -98,9 +98,6 @@ FUNCTION QObject( ... ) RETURN HB_QObject():new( ... ) -FUNCTION QObjectFrom( ... ) - RETURN HB_QObject():from( ... ) - FUNCTION QObjectFromPointer( ... ) RETURN HB_QObject():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQPoint.prg b/harbour/contrib/hbqt/qtcore/g/TQPoint.prg index 820ab8e6d9..22a72b5e69 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQPoint.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQPoint.prg @@ -98,9 +98,6 @@ FUNCTION QPoint( ... ) RETURN HB_QPoint():new( ... ) -FUNCTION QPointFrom( ... ) - RETURN HB_QPoint():from( ... ) - FUNCTION QPointFromPointer( ... ) RETURN HB_QPoint():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQPointF.prg b/harbour/contrib/hbqt/qtcore/g/TQPointF.prg index 2406d73341..b6477994cb 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQPointF.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQPointF.prg @@ -98,9 +98,6 @@ FUNCTION QPointF( ... ) RETURN HB_QPointF():new( ... ) -FUNCTION QPointFFrom( ... ) - RETURN HB_QPointF():from( ... ) - FUNCTION QPointFFromPointer( ... ) RETURN HB_QPointF():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQProcess.prg b/harbour/contrib/hbqt/qtcore/g/TQProcess.prg index b78bb4245f..df4977f016 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQProcess.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQProcess.prg @@ -98,9 +98,6 @@ FUNCTION QProcess( ... ) RETURN HB_QProcess():new( ... ) -FUNCTION QProcessFrom( ... ) - RETURN HB_QProcess():from( ... ) - FUNCTION QProcessFromPointer( ... ) RETURN HB_QProcess():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQRect.prg b/harbour/contrib/hbqt/qtcore/g/TQRect.prg index 18bb3a115c..4c38457296 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQRect.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQRect.prg @@ -98,9 +98,6 @@ FUNCTION QRect( ... ) RETURN HB_QRect():new( ... ) -FUNCTION QRectFrom( ... ) - RETURN HB_QRect():from( ... ) - FUNCTION QRectFromPointer( ... ) RETURN HB_QRect():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQRectF.prg b/harbour/contrib/hbqt/qtcore/g/TQRectF.prg index 3104c7b4c0..b443a39615 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQRectF.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQRectF.prg @@ -98,9 +98,6 @@ FUNCTION QRectF( ... ) RETURN HB_QRectF():new( ... ) -FUNCTION QRectFFrom( ... ) - RETURN HB_QRectF():from( ... ) - FUNCTION QRectFFromPointer( ... ) RETURN HB_QRectF():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQRegExp.prg b/harbour/contrib/hbqt/qtcore/g/TQRegExp.prg index 275dd79ea3..1f1e68d11b 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQRegExp.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQRegExp.prg @@ -98,9 +98,6 @@ FUNCTION QRegExp( ... ) RETURN HB_QRegExp():new( ... ) -FUNCTION QRegExpFrom( ... ) - RETURN HB_QRegExp():from( ... ) - FUNCTION QRegExpFromPointer( ... ) RETURN HB_QRegExp():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQResource.prg b/harbour/contrib/hbqt/qtcore/g/TQResource.prg index 09700468c4..3f4cf78cfd 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQResource.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQResource.prg @@ -98,9 +98,6 @@ FUNCTION QResource( ... ) RETURN HB_QResource():new( ... ) -FUNCTION QResourceFrom( ... ) - RETURN HB_QResource():from( ... ) - FUNCTION QResourceFromPointer( ... ) RETURN HB_QResource():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQSettings.prg b/harbour/contrib/hbqt/qtcore/g/TQSettings.prg index 5bfca27232..9c5e5d7ef5 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQSettings.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQSettings.prg @@ -98,9 +98,6 @@ FUNCTION QSettings( ... ) RETURN HB_QSettings():new( ... ) -FUNCTION QSettingsFrom( ... ) - RETURN HB_QSettings():from( ... ) - FUNCTION QSettingsFromPointer( ... ) RETURN HB_QSettings():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQSignalMapper.prg b/harbour/contrib/hbqt/qtcore/g/TQSignalMapper.prg index b50eee3f24..cad2d2b9a1 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQSignalMapper.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQSignalMapper.prg @@ -98,9 +98,6 @@ FUNCTION QSignalMapper( ... ) RETURN HB_QSignalMapper():new( ... ) -FUNCTION QSignalMapperFrom( ... ) - RETURN HB_QSignalMapper():from( ... ) - FUNCTION QSignalMapperFromPointer( ... ) RETURN HB_QSignalMapper():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQSize.prg b/harbour/contrib/hbqt/qtcore/g/TQSize.prg index f953d75ac1..9fcc920a15 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQSize.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQSize.prg @@ -98,9 +98,6 @@ FUNCTION QSize( ... ) RETURN HB_QSize():new( ... ) -FUNCTION QSizeFrom( ... ) - RETURN HB_QSize():from( ... ) - FUNCTION QSizeFromPointer( ... ) RETURN HB_QSize():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQSizeF.prg b/harbour/contrib/hbqt/qtcore/g/TQSizeF.prg index 913a689ef3..8d191e1f5c 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQSizeF.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQSizeF.prg @@ -98,9 +98,6 @@ FUNCTION QSizeF( ... ) RETURN HB_QSizeF():new( ... ) -FUNCTION QSizeFFrom( ... ) - RETURN HB_QSizeF():from( ... ) - FUNCTION QSizeFFromPointer( ... ) RETURN HB_QSizeF():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQStringList.prg b/harbour/contrib/hbqt/qtcore/g/TQStringList.prg index 1bbea5bc9e..448e613c4d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQStringList.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQStringList.prg @@ -98,9 +98,6 @@ FUNCTION QStringList( ... ) RETURN HB_QStringList():new( ... ) -FUNCTION QStringListFrom( ... ) - RETURN HB_QStringList():from( ... ) - FUNCTION QStringListFromPointer( ... ) RETURN HB_QStringList():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQStringRef.prg b/harbour/contrib/hbqt/qtcore/g/TQStringRef.prg index d974c69a7d..c8bf60ecd8 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQStringRef.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQStringRef.prg @@ -98,9 +98,6 @@ FUNCTION QStringRef( ... ) RETURN HB_QStringRef():new( ... ) -FUNCTION QStringRefFrom( ... ) - RETURN HB_QStringRef():from( ... ) - FUNCTION QStringRefFromPointer( ... ) RETURN HB_QStringRef():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTextBoundaryFinder.prg b/harbour/contrib/hbqt/qtcore/g/TQTextBoundaryFinder.prg index a04dcca47c..3ce33ba5c0 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTextBoundaryFinder.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTextBoundaryFinder.prg @@ -98,9 +98,6 @@ FUNCTION QTextBoundaryFinder( ... ) RETURN HB_QTextBoundaryFinder():new( ... ) -FUNCTION QTextBoundaryFinderFrom( ... ) - RETURN HB_QTextBoundaryFinder():from( ... ) - FUNCTION QTextBoundaryFinderFromPointer( ... ) RETURN HB_QTextBoundaryFinder():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTextCodec.prg b/harbour/contrib/hbqt/qtcore/g/TQTextCodec.prg index a24f283108..cc75763acd 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTextCodec.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTextCodec.prg @@ -98,9 +98,6 @@ FUNCTION QTextCodec( ... ) RETURN HB_QTextCodec():new( ... ) -FUNCTION QTextCodecFrom( ... ) - RETURN HB_QTextCodec():from( ... ) - FUNCTION QTextCodecFromPointer( ... ) RETURN HB_QTextCodec():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTextDecoder.prg b/harbour/contrib/hbqt/qtcore/g/TQTextDecoder.prg index 7b3114dd2c..80c84e6e37 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTextDecoder.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTextDecoder.prg @@ -98,9 +98,6 @@ FUNCTION QTextDecoder( ... ) RETURN HB_QTextDecoder():new( ... ) -FUNCTION QTextDecoderFrom( ... ) - RETURN HB_QTextDecoder():from( ... ) - FUNCTION QTextDecoderFromPointer( ... ) RETURN HB_QTextDecoder():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTextEncoder.prg b/harbour/contrib/hbqt/qtcore/g/TQTextEncoder.prg index a410926a2d..78083d55a9 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTextEncoder.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTextEncoder.prg @@ -98,9 +98,6 @@ FUNCTION QTextEncoder( ... ) RETURN HB_QTextEncoder():new( ... ) -FUNCTION QTextEncoderFrom( ... ) - RETURN HB_QTextEncoder():from( ... ) - FUNCTION QTextEncoderFromPointer( ... ) RETURN HB_QTextEncoder():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTextStream.prg b/harbour/contrib/hbqt/qtcore/g/TQTextStream.prg index 1255e80c3d..f5ec82a41d 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTextStream.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTextStream.prg @@ -98,9 +98,6 @@ FUNCTION QTextStream( ... ) RETURN HB_QTextStream():new( ... ) -FUNCTION QTextStreamFrom( ... ) - RETURN HB_QTextStream():from( ... ) - FUNCTION QTextStreamFromPointer( ... ) RETURN HB_QTextStream():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQThread.prg b/harbour/contrib/hbqt/qtcore/g/TQThread.prg index 67bd431a2e..faee8d34b8 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQThread.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQThread.prg @@ -98,9 +98,6 @@ FUNCTION QThread( ... ) RETURN HB_QThread():new( ... ) -FUNCTION QThreadFrom( ... ) - RETURN HB_QThread():from( ... ) - FUNCTION QThreadFromPointer( ... ) RETURN HB_QThread():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTime.prg b/harbour/contrib/hbqt/qtcore/g/TQTime.prg index 95da3ab7e8..91ed9cd69b 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTime.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTime.prg @@ -98,9 +98,6 @@ FUNCTION QTime( ... ) RETURN HB_QTime():new( ... ) -FUNCTION QTimeFrom( ... ) - RETURN HB_QTime():from( ... ) - FUNCTION QTimeFromPointer( ... ) RETURN HB_QTime():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTimeLine.prg b/harbour/contrib/hbqt/qtcore/g/TQTimeLine.prg index bc0bfa5341..9fb61a621a 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTimeLine.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTimeLine.prg @@ -98,9 +98,6 @@ FUNCTION QTimeLine( ... ) RETURN HB_QTimeLine():new( ... ) -FUNCTION QTimeLineFrom( ... ) - RETURN HB_QTimeLine():from( ... ) - FUNCTION QTimeLineFromPointer( ... ) RETURN HB_QTimeLine():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTimer.prg b/harbour/contrib/hbqt/qtcore/g/TQTimer.prg index dcede48a45..427e615765 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTimer.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTimer.prg @@ -98,9 +98,6 @@ FUNCTION QTimer( ... ) RETURN HB_QTimer():new( ... ) -FUNCTION QTimerFrom( ... ) - RETURN HB_QTimer():from( ... ) - FUNCTION QTimerFromPointer( ... ) RETURN HB_QTimer():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQTranslator.prg b/harbour/contrib/hbqt/qtcore/g/TQTranslator.prg index 2661c32293..fa8eb336ce 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQTranslator.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQTranslator.prg @@ -98,9 +98,6 @@ FUNCTION QTranslator( ... ) RETURN HB_QTranslator():new( ... ) -FUNCTION QTranslatorFrom( ... ) - RETURN HB_QTranslator():from( ... ) - FUNCTION QTranslatorFromPointer( ... ) RETURN HB_QTranslator():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQUrl.prg b/harbour/contrib/hbqt/qtcore/g/TQUrl.prg index b9f136b7ac..732d9d0edf 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQUrl.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQUrl.prg @@ -98,9 +98,6 @@ FUNCTION QUrl( ... ) RETURN HB_QUrl():new( ... ) -FUNCTION QUrlFrom( ... ) - RETURN HB_QUrl():from( ... ) - FUNCTION QUrlFromPointer( ... ) RETURN HB_QUrl():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/g/TQVariant.prg b/harbour/contrib/hbqt/qtcore/g/TQVariant.prg index 6f1be7d810..45678787ca 100644 --- a/harbour/contrib/hbqt/qtcore/g/TQVariant.prg +++ b/harbour/contrib/hbqt/qtcore/g/TQVariant.prg @@ -98,9 +98,6 @@ FUNCTION QVariant( ... ) RETURN HB_QVariant():new( ... ) -FUNCTION QVariantFrom( ... ) - RETURN HB_QVariant():from( ... ) - FUNCTION QVariantFromPointer( ... ) RETURN HB_QVariant():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.cpp b/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.cpp index f0924c4516..5192fc6f4f 100644 --- a/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.cpp +++ b/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.cpp @@ -1775,6 +1775,7 @@ static void hbqt_SlotsExecQTime( PHB_ITEM * codeBlock, void ** arguments ) #endif } + /*----------------------------------------------------------------------*/ static int connect_signal( QString signal, QObject * object, HBQSlots * t_slots ) diff --git a/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.h b/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.h index 63e5abea72..9993e93bca 100644 --- a/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.h +++ b/harbour/contrib/hbqt/qtcore/hbqt_hbqslots.h @@ -78,7 +78,7 @@ /*----------------------------------------------------------------------*/ -#define __xPRITPAL__ +#define __PRITPAL__ #ifdef __PRITPAL__ diff --git a/harbour/contrib/hbqt/qtcore/hbqtcore.hbx b/harbour/contrib/hbqt/qtcore/hbqtcore.hbx index 4f8af6fcb7..a3d4d7a3a9 100644 --- a/harbour/contrib/hbqt/qtcore/hbqtcore.hbx +++ b/harbour/contrib/hbqt/qtcore/hbqtcore.hbx @@ -29,13 +29,10 @@ #endif DYNAMIC HBQEVENTS -DYNAMIC HBQEVENTSFROM DYNAMIC HBQEVENTSFROMPOINTER DYNAMIC HBQSLOTS -DYNAMIC HBQSLOTSFROM DYNAMIC HBQSLOTSFROMPOINTER DYNAMIC HBQSTRING -DYNAMIC HBQSTRINGFROM DYNAMIC HBQSTRINGFROMPOINTER DYNAMIC HBQTOBJECTHANDLER DYNAMIC HBQT_FINDCHILD @@ -105,182 +102,123 @@ DYNAMIC HB_QTRANSLATOR DYNAMIC HB_QURL DYNAMIC HB_QVARIANT DYNAMIC QABSTRACTITEMMODEL -DYNAMIC QABSTRACTITEMMODELFROM DYNAMIC QABSTRACTITEMMODELFROMPOINTER DYNAMIC QABSTRACTLISTMODEL -DYNAMIC QABSTRACTLISTMODELFROM DYNAMIC QABSTRACTLISTMODELFROMPOINTER DYNAMIC QABSTRACTTABLEMODEL -DYNAMIC QABSTRACTTABLEMODELFROM DYNAMIC QABSTRACTTABLEMODELFROMPOINTER DYNAMIC QBITARRAY -DYNAMIC QBITARRAYFROM DYNAMIC QBITARRAYFROMPOINTER DYNAMIC QBUFFER -DYNAMIC QBUFFERFROM DYNAMIC QBUFFERFROMPOINTER DYNAMIC QBYTEARRAY -DYNAMIC QBYTEARRAYFROM DYNAMIC QBYTEARRAYFROMPOINTER DYNAMIC QCHAR -DYNAMIC QCHARFROM DYNAMIC QCHARFROMPOINTER DYNAMIC QCOREAPPLICATION -DYNAMIC QCOREAPPLICATIONFROM DYNAMIC QCOREAPPLICATIONFROMPOINTER DYNAMIC QDATASTREAM -DYNAMIC QDATASTREAMFROM DYNAMIC QDATASTREAMFROMPOINTER DYNAMIC QDATE -DYNAMIC QDATEFROM DYNAMIC QDATEFROMPOINTER DYNAMIC QDATETIME -DYNAMIC QDATETIMEFROM DYNAMIC QDATETIMEFROMPOINTER DYNAMIC QDIR -DYNAMIC QDIRFROM DYNAMIC QDIRFROMPOINTER DYNAMIC QEVENT -DYNAMIC QEVENTFROM DYNAMIC QEVENTFROMPOINTER DYNAMIC QEVENTLOOP -DYNAMIC QEVENTLOOPFROM DYNAMIC QEVENTLOOPFROMPOINTER DYNAMIC QFILE -DYNAMIC QFILEFROM DYNAMIC QFILEFROMPOINTER DYNAMIC QFILEINFO -DYNAMIC QFILEINFOFROM DYNAMIC QFILEINFOFROMPOINTER DYNAMIC QGENERICARGUMENT -DYNAMIC QGENERICARGUMENTFROM DYNAMIC QGENERICARGUMENTFROMPOINTER DYNAMIC QGENERICRETURNARGUMENT -DYNAMIC QGENERICRETURNARGUMENTFROM DYNAMIC QGENERICRETURNARGUMENTFROMPOINTER DYNAMIC QIODEVICE -DYNAMIC QIODEVICEFROM DYNAMIC QIODEVICEFROMPOINTER DYNAMIC QLATIN1CHAR -DYNAMIC QLATIN1CHARFROM DYNAMIC QLATIN1CHARFROMPOINTER DYNAMIC QLATIN1STRING -DYNAMIC QLATIN1STRINGFROM DYNAMIC QLATIN1STRINGFROMPOINTER DYNAMIC QLINE DYNAMIC QLINEF -DYNAMIC QLINEFFROM DYNAMIC QLINEFFROMPOINTER -DYNAMIC QLINEFROM DYNAMIC QLINEFROMPOINTER DYNAMIC QLIST -DYNAMIC QLISTFROM DYNAMIC QLISTFROMPOINTER DYNAMIC QLOCALE -DYNAMIC QLOCALEFROM DYNAMIC QLOCALEFROMPOINTER DYNAMIC QMETACLASSINFO -DYNAMIC QMETACLASSINFOFROM DYNAMIC QMETACLASSINFOFROMPOINTER DYNAMIC QMETAENUM -DYNAMIC QMETAENUMFROM DYNAMIC QMETAENUMFROMPOINTER DYNAMIC QMETAMETHOD -DYNAMIC QMETAMETHODFROM DYNAMIC QMETAMETHODFROMPOINTER DYNAMIC QMETAOBJECT -DYNAMIC QMETAOBJECTFROM DYNAMIC QMETAOBJECTFROMPOINTER DYNAMIC QMETAPROPERTY -DYNAMIC QMETAPROPERTYFROM DYNAMIC QMETAPROPERTYFROMPOINTER DYNAMIC QMETATYPE -DYNAMIC QMETATYPEFROM DYNAMIC QMETATYPEFROMPOINTER DYNAMIC QMIMEDATA -DYNAMIC QMIMEDATAFROM DYNAMIC QMIMEDATAFROMPOINTER DYNAMIC QMODELINDEX -DYNAMIC QMODELINDEXFROM DYNAMIC QMODELINDEXFROMPOINTER DYNAMIC QOBJECT -DYNAMIC QOBJECTFROM DYNAMIC QOBJECTFROMPOINTER DYNAMIC QPOINT DYNAMIC QPOINTF -DYNAMIC QPOINTFFROM DYNAMIC QPOINTFFROMPOINTER -DYNAMIC QPOINTFROM DYNAMIC QPOINTFROMPOINTER DYNAMIC QPROCESS -DYNAMIC QPROCESSFROM DYNAMIC QPROCESSFROMPOINTER DYNAMIC QRECT DYNAMIC QRECTF -DYNAMIC QRECTFFROM DYNAMIC QRECTFFROMPOINTER -DYNAMIC QRECTFROM DYNAMIC QRECTFROMPOINTER DYNAMIC QREGEXP -DYNAMIC QREGEXPFROM DYNAMIC QREGEXPFROMPOINTER DYNAMIC QRESOURCE -DYNAMIC QRESOURCEFROM DYNAMIC QRESOURCEFROMPOINTER DYNAMIC QSETTINGS -DYNAMIC QSETTINGSFROM DYNAMIC QSETTINGSFROMPOINTER DYNAMIC QSHAREDBUILD DYNAMIC QSIGNALMAPPER -DYNAMIC QSIGNALMAPPERFROM DYNAMIC QSIGNALMAPPERFROMPOINTER DYNAMIC QSIZE DYNAMIC QSIZEF -DYNAMIC QSIZEFFROM DYNAMIC QSIZEFFROMPOINTER -DYNAMIC QSIZEFROM DYNAMIC QSIZEFROMPOINTER DYNAMIC QSTRINGLIST -DYNAMIC QSTRINGLISTFROM DYNAMIC QSTRINGLISTFROMPOINTER DYNAMIC QSTRINGREF -DYNAMIC QSTRINGREFFROM DYNAMIC QSTRINGREFFROMPOINTER DYNAMIC QTEXTBOUNDARYFINDER -DYNAMIC QTEXTBOUNDARYFINDERFROM DYNAMIC QTEXTBOUNDARYFINDERFROMPOINTER DYNAMIC QTEXTCODEC -DYNAMIC QTEXTCODECFROM DYNAMIC QTEXTCODECFROMPOINTER DYNAMIC QTEXTDECODER -DYNAMIC QTEXTDECODERFROM DYNAMIC QTEXTDECODERFROMPOINTER DYNAMIC QTEXTENCODER -DYNAMIC QTEXTENCODERFROM DYNAMIC QTEXTENCODERFROMPOINTER DYNAMIC QTEXTSTREAM -DYNAMIC QTEXTSTREAMFROM DYNAMIC QTEXTSTREAMFROMPOINTER DYNAMIC QTHREAD -DYNAMIC QTHREADFROM DYNAMIC QTHREADFROMPOINTER DYNAMIC QTIME -DYNAMIC QTIMEFROM DYNAMIC QTIMEFROMPOINTER DYNAMIC QTIMELINE -DYNAMIC QTIMELINEFROM DYNAMIC QTIMELINEFROMPOINTER DYNAMIC QTIMER -DYNAMIC QTIMERFROM DYNAMIC QTIMERFROMPOINTER DYNAMIC QTRANSLATOR -DYNAMIC QTRANSLATORFROM DYNAMIC QTRANSLATORFROMPOINTER DYNAMIC QURL -DYNAMIC QURLFROM DYNAMIC QURLFROMPOINTER DYNAMIC QVARIANT -DYNAMIC QVARIANTFROM DYNAMIC QVARIANTFROMPOINTER DYNAMIC QVERSION DYNAMIC __HBQT_ERROR diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerActionEditorInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerActionEditorInterface.prg index 7ae2d8c36f..c79d151e85 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerActionEditorInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerActionEditorInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerActionEditorInterface( ... ) RETURN HB_QDesignerActionEditorInterface():new( ... ) -FUNCTION QDesignerActionEditorInterfaceFrom( ... ) - RETURN HB_QDesignerActionEditorInterface():from( ... ) - FUNCTION QDesignerActionEditorInterfaceFromPointer( ... ) RETURN HB_QDesignerActionEditorInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormEditorInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormEditorInterface.prg index 19e0f426cf..4dca73b9b8 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormEditorInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormEditorInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerFormEditorInterface( ... ) RETURN HB_QDesignerFormEditorInterface():new( ... ) -FUNCTION QDesignerFormEditorInterfaceFrom( ... ) - RETURN HB_QDesignerFormEditorInterface():from( ... ) - FUNCTION QDesignerFormEditorInterfaceFromPointer( ... ) RETURN HB_QDesignerFormEditorInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowCursorInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowCursorInterface.prg index d59b504b71..62383d3c5d 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowCursorInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowCursorInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerFormWindowCursorInterface( ... ) RETURN HB_QDesignerFormWindowCursorInterface():new( ... ) -FUNCTION QDesignerFormWindowCursorInterfaceFrom( ... ) - RETURN HB_QDesignerFormWindowCursorInterface():from( ... ) - FUNCTION QDesignerFormWindowCursorInterfaceFromPointer( ... ) RETURN HB_QDesignerFormWindowCursorInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowInterface.prg index 97c19fb885..2b97863d32 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerFormWindowInterface( ... ) RETURN HB_QDesignerFormWindowInterface():new( ... ) -FUNCTION QDesignerFormWindowInterfaceFrom( ... ) - RETURN HB_QDesignerFormWindowInterface():from( ... ) - FUNCTION QDesignerFormWindowInterfaceFromPointer( ... ) RETURN HB_QDesignerFormWindowInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowManagerInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowManagerInterface.prg index aa12a1570f..d24cec0b07 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowManagerInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerFormWindowManagerInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerFormWindowManagerInterface( ... ) RETURN HB_QDesignerFormWindowManagerInterface():new( ... ) -FUNCTION QDesignerFormWindowManagerInterfaceFrom( ... ) - RETURN HB_QDesignerFormWindowManagerInterface():from( ... ) - FUNCTION QDesignerFormWindowManagerInterfaceFromPointer( ... ) RETURN HB_QDesignerFormWindowManagerInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerObjectInspectorInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerObjectInspectorInterface.prg index 3eef7a8669..c7d40a6d94 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerObjectInspectorInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerObjectInspectorInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerObjectInspectorInterface( ... ) RETURN HB_QDesignerObjectInspectorInterface():new( ... ) -FUNCTION QDesignerObjectInspectorInterfaceFrom( ... ) - RETURN HB_QDesignerObjectInspectorInterface():from( ... ) - FUNCTION QDesignerObjectInspectorInterfaceFromPointer( ... ) RETURN HB_QDesignerObjectInspectorInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerPropertyEditorInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerPropertyEditorInterface.prg index a348c82114..d661f89ea7 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerPropertyEditorInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerPropertyEditorInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerPropertyEditorInterface( ... ) RETURN HB_QDesignerPropertyEditorInterface():new( ... ) -FUNCTION QDesignerPropertyEditorInterfaceFrom( ... ) - RETURN HB_QDesignerPropertyEditorInterface():from( ... ) - FUNCTION QDesignerPropertyEditorInterfaceFromPointer( ... ) RETURN HB_QDesignerPropertyEditorInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerWidgetBoxInterface.prg b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerWidgetBoxInterface.prg index d2d543b3b5..d81e56684f 100644 --- a/harbour/contrib/hbqt/qtdesigner/g/TQDesignerWidgetBoxInterface.prg +++ b/harbour/contrib/hbqt/qtdesigner/g/TQDesignerWidgetBoxInterface.prg @@ -98,9 +98,6 @@ FUNCTION QDesignerWidgetBoxInterface( ... ) RETURN HB_QDesignerWidgetBoxInterface():new( ... ) -FUNCTION QDesignerWidgetBoxInterfaceFrom( ... ) - RETURN HB_QDesignerWidgetBoxInterface():from( ... ) - FUNCTION QDesignerWidgetBoxInterfaceFromPointer( ... ) RETURN HB_QDesignerWidgetBoxInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/QMainWindow.cpp b/harbour/contrib/hbqt/qtgui/g/QMainWindow.cpp index 0db3d9d461..edb4356100 100644 --- a/harbour/contrib/hbqt/qtgui/g/QMainWindow.cpp +++ b/harbour/contrib/hbqt/qtgui/g/QMainWindow.cpp @@ -510,13 +510,14 @@ HB_FUNC( QT_QMAINWINDOW_SAVESTATE ) } /* - * void setCentralWidget ( QWidget * widget ) + * void setCentralWidget ( QWidget * widget ) [*D=1*] */ HB_FUNC( QT_QMAINWINDOW_SETCENTRALWIDGET ) { QMainWindow * p = hbqt_par_QMainWindow( 1 ); if( p ) { + hbqt_detachgcpointer( 2 ); ( p )->setCentralWidget( hbqt_par_QWidget( 2 ) ); } } @@ -570,37 +571,40 @@ HB_FUNC( QT_QMAINWINDOW_SETICONSIZE ) } /* - * void setMenuBar ( QMenuBar * menuBar ) + * void setMenuBar ( QMenuBar * menuBar ) [*D=1*] */ HB_FUNC( QT_QMAINWINDOW_SETMENUBAR ) { QMainWindow * p = hbqt_par_QMainWindow( 1 ); if( p ) { + hbqt_detachgcpointer( 2 ); ( p )->setMenuBar( hbqt_par_QMenuBar( 2 ) ); } } /* - * void setMenuWidget ( QWidget * menuBar ) + * void setMenuWidget ( QWidget * menuBar ) [*D=1*] */ HB_FUNC( QT_QMAINWINDOW_SETMENUWIDGET ) { QMainWindow * p = hbqt_par_QMainWindow( 1 ); if( p ) { + hbqt_detachgcpointer( 2 ); ( p )->setMenuWidget( hbqt_par_QWidget( 2 ) ); } } /* - * void setStatusBar ( QStatusBar * statusbar ) + * void setStatusBar ( QStatusBar * statusbar ) [*D=1*] */ HB_FUNC( QT_QMAINWINDOW_SETSTATUSBAR ) { QMainWindow * p = hbqt_par_QMainWindow( 1 ); if( p ) { + hbqt_detachgcpointer( 2 ); ( p )->setStatusBar( hbqt_par_QStatusBar( 2 ) ); } } diff --git a/harbour/contrib/hbqt/qtgui/g/THBQAbstractItemModel.prg b/harbour/contrib/hbqt/qtgui/g/THBQAbstractItemModel.prg index a8f71aee16..152b4ad10f 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQAbstractItemModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQAbstractItemModel.prg @@ -98,9 +98,6 @@ FUNCTION HBQAbstractItemModel( ... ) RETURN HB_HBQAbstractItemModel():new( ... ) -FUNCTION HBQAbstractItemModelFrom( ... ) - RETURN HB_HBQAbstractItemModel():from( ... ) - FUNCTION HBQAbstractItemModelFromPointer( ... ) RETURN HB_HBQAbstractItemModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/THBQGraphicsItem.prg b/harbour/contrib/hbqt/qtgui/g/THBQGraphicsItem.prg index d27390a2fe..4bf20a11e3 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQGraphicsItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQGraphicsItem.prg @@ -98,9 +98,6 @@ FUNCTION HBQGraphicsItem( ... ) RETURN HB_HBQGraphicsItem():new( ... ) -FUNCTION HBQGraphicsItemFrom( ... ) - RETURN HB_HBQGraphicsItem():from( ... ) - FUNCTION HBQGraphicsItemFromPointer( ... ) RETURN HB_HBQGraphicsItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/THBQGraphicsScene.prg b/harbour/contrib/hbqt/qtgui/g/THBQGraphicsScene.prg index 9859827193..275832ea8b 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQGraphicsScene.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQGraphicsScene.prg @@ -98,9 +98,6 @@ FUNCTION HBQGraphicsScene( ... ) RETURN HB_HBQGraphicsScene():new( ... ) -FUNCTION HBQGraphicsSceneFrom( ... ) - RETURN HB_HBQGraphicsScene():from( ... ) - FUNCTION HBQGraphicsSceneFromPointer( ... ) RETURN HB_HBQGraphicsScene():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/THBQPlainTextEdit.prg b/harbour/contrib/hbqt/qtgui/g/THBQPlainTextEdit.prg index a36d02b746..e05c699b60 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQPlainTextEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQPlainTextEdit.prg @@ -98,9 +98,6 @@ FUNCTION HBQPlainTextEdit( ... ) RETURN HB_HBQPlainTextEdit():new( ... ) -FUNCTION HBQPlainTextEditFrom( ... ) - RETURN HB_HBQPlainTextEdit():from( ... ) - FUNCTION HBQPlainTextEditFromPointer( ... ) RETURN HB_HBQPlainTextEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/THBQSyntaxHighlighter.prg b/harbour/contrib/hbqt/qtgui/g/THBQSyntaxHighlighter.prg index db1e9c9040..1846d648e7 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQSyntaxHighlighter.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQSyntaxHighlighter.prg @@ -98,9 +98,6 @@ FUNCTION HBQSyntaxHighlighter( ... ) RETURN HB_HBQSyntaxHighlighter():new( ... ) -FUNCTION HBQSyntaxHighlighterFrom( ... ) - RETURN HB_HBQSyntaxHighlighter():from( ... ) - FUNCTION HBQSyntaxHighlighterFromPointer( ... ) RETURN HB_HBQSyntaxHighlighter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/THBQTableView.prg b/harbour/contrib/hbqt/qtgui/g/THBQTableView.prg index 9f8efe5599..384ad207be 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQTableView.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQTableView.prg @@ -98,9 +98,6 @@ FUNCTION HBQTableView( ... ) RETURN HB_HBQTableView():new( ... ) -FUNCTION HBQTableViewFrom( ... ) - RETURN HB_HBQTableView():from( ... ) - FUNCTION HBQTableViewFromPointer( ... ) RETURN HB_HBQTableView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/THBQTextBlockUserData.prg b/harbour/contrib/hbqt/qtgui/g/THBQTextBlockUserData.prg index bb8bfd0c1d..b7d2f2e216 100644 --- a/harbour/contrib/hbqt/qtgui/g/THBQTextBlockUserData.prg +++ b/harbour/contrib/hbqt/qtgui/g/THBQTextBlockUserData.prg @@ -98,9 +98,6 @@ FUNCTION HBQTextBlockUserData( ... ) RETURN HB_HBQTextBlockUserData():new( ... ) -FUNCTION HBQTextBlockUserDataFrom( ... ) - RETURN HB_HBQTextBlockUserData():from( ... ) - FUNCTION HBQTextBlockUserDataFromPointer( ... ) RETURN HB_HBQTextBlockUserData():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractButton.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractButton.prg index 4c003f2f7b..f02facd94b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractButton.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractButton( ... ) RETURN HB_QAbstractButton():new( ... ) -FUNCTION QAbstractButtonFrom( ... ) - RETURN HB_QAbstractButton():from( ... ) - FUNCTION QAbstractButtonFromPointer( ... ) RETURN HB_QAbstractButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractGraphicsShapeItem.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractGraphicsShapeItem.prg index b9cbe32d65..0ed5ea0d41 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractGraphicsShapeItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractGraphicsShapeItem.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractGraphicsShapeItem( ... ) RETURN HB_QAbstractGraphicsShapeItem():new( ... ) -FUNCTION QAbstractGraphicsShapeItemFrom( ... ) - RETURN HB_QAbstractGraphicsShapeItem():from( ... ) - FUNCTION QAbstractGraphicsShapeItemFromPointer( ... ) RETURN HB_QAbstractGraphicsShapeItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractItemDelegate.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractItemDelegate.prg index b41d8ff314..670db357a0 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractItemDelegate.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractItemDelegate.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractItemDelegate( ... ) RETURN HB_QAbstractItemDelegate():new( ... ) -FUNCTION QAbstractItemDelegateFrom( ... ) - RETURN HB_QAbstractItemDelegate():from( ... ) - FUNCTION QAbstractItemDelegateFromPointer( ... ) RETURN HB_QAbstractItemDelegate():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractItemView.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractItemView.prg index ac97029fc0..ea099a8e83 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractItemView.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractItemView.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractItemView( ... ) RETURN HB_QAbstractItemView():new( ... ) -FUNCTION QAbstractItemViewFrom( ... ) - RETURN HB_QAbstractItemView():from( ... ) - FUNCTION QAbstractItemViewFromPointer( ... ) RETURN HB_QAbstractItemView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractPrintDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractPrintDialog.prg index 37e35207a3..f31a7858b0 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractPrintDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractPrintDialog.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractPrintDialog( ... ) RETURN HB_QAbstractPrintDialog():new( ... ) -FUNCTION QAbstractPrintDialogFrom( ... ) - RETURN HB_QAbstractPrintDialog():from( ... ) - FUNCTION QAbstractPrintDialogFromPointer( ... ) RETURN HB_QAbstractPrintDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractProxyModel.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractProxyModel.prg index 040650d526..7e8a6444ac 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractProxyModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractProxyModel.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractProxyModel( ... ) RETURN HB_QAbstractProxyModel():new( ... ) -FUNCTION QAbstractProxyModelFrom( ... ) - RETURN HB_QAbstractProxyModel():from( ... ) - FUNCTION QAbstractProxyModelFromPointer( ... ) RETURN HB_QAbstractProxyModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractScrollArea.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractScrollArea.prg index ce66bf9cb4..eb0b79a8ee 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractScrollArea.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractScrollArea.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractScrollArea( ... ) RETURN HB_QAbstractScrollArea():new( ... ) -FUNCTION QAbstractScrollAreaFrom( ... ) - RETURN HB_QAbstractScrollArea():from( ... ) - FUNCTION QAbstractScrollAreaFromPointer( ... ) RETURN HB_QAbstractScrollArea():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractSlider.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractSlider.prg index 99f99c520b..a3dbabed79 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractSlider.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractSlider.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractSlider( ... ) RETURN HB_QAbstractSlider():new( ... ) -FUNCTION QAbstractSliderFrom( ... ) - RETURN HB_QAbstractSlider():from( ... ) - FUNCTION QAbstractSliderFromPointer( ... ) RETURN HB_QAbstractSlider():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractSpinBox.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractSpinBox.prg index ee38422e97..455ee5736a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractSpinBox.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractSpinBox( ... ) RETURN HB_QAbstractSpinBox():new( ... ) -FUNCTION QAbstractSpinBoxFrom( ... ) - RETURN HB_QAbstractSpinBox():from( ... ) - FUNCTION QAbstractSpinBoxFromPointer( ... ) RETURN HB_QAbstractSpinBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAbstractTextDocumentLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQAbstractTextDocumentLayout.prg index 7ec0346eb3..48d821373b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAbstractTextDocumentLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAbstractTextDocumentLayout.prg @@ -98,9 +98,6 @@ FUNCTION QAbstractTextDocumentLayout( ... ) RETURN HB_QAbstractTextDocumentLayout():new( ... ) -FUNCTION QAbstractTextDocumentLayoutFrom( ... ) - RETURN HB_QAbstractTextDocumentLayout():from( ... ) - FUNCTION QAbstractTextDocumentLayoutFromPointer( ... ) RETURN HB_QAbstractTextDocumentLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQAction.prg b/harbour/contrib/hbqt/qtgui/g/TQAction.prg index 7135ed7902..fb63682b47 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQAction.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQAction.prg @@ -98,9 +98,6 @@ FUNCTION QAction( ... ) RETURN HB_QAction():new( ... ) -FUNCTION QActionFrom( ... ) - RETURN HB_QAction():from( ... ) - FUNCTION QActionFromPointer( ... ) RETURN HB_QAction():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQActionGroup.prg b/harbour/contrib/hbqt/qtgui/g/TQActionGroup.prg index d0b178de63..4c3c77d0ce 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQActionGroup.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQActionGroup.prg @@ -98,9 +98,6 @@ FUNCTION QActionGroup( ... ) RETURN HB_QActionGroup():new( ... ) -FUNCTION QActionGroupFrom( ... ) - RETURN HB_QActionGroup():from( ... ) - FUNCTION QActionGroupFromPointer( ... ) RETURN HB_QActionGroup():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQApplication.prg b/harbour/contrib/hbqt/qtgui/g/TQApplication.prg index d2ab3744d9..fa39b3989a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQApplication.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQApplication.prg @@ -98,9 +98,6 @@ FUNCTION QApplication( ... ) RETURN HB_QApplication():new( ... ) -FUNCTION QApplicationFrom( ... ) - RETURN HB_QApplication():from( ... ) - FUNCTION QApplicationFromPointer( ... ) RETURN HB_QApplication():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQBitmap.prg b/harbour/contrib/hbqt/qtgui/g/TQBitmap.prg index 861cd69880..0d78cfa3c8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQBitmap.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQBitmap.prg @@ -98,9 +98,6 @@ FUNCTION QBitmap( ... ) RETURN HB_QBitmap():new( ... ) -FUNCTION QBitmapFrom( ... ) - RETURN HB_QBitmap():from( ... ) - FUNCTION QBitmapFromPointer( ... ) RETURN HB_QBitmap():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQBoxLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQBoxLayout.prg index b4b9cfad25..d8168e3aa9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQBoxLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQBoxLayout.prg @@ -98,9 +98,6 @@ FUNCTION QBoxLayout( ... ) RETURN HB_QBoxLayout():new( ... ) -FUNCTION QBoxLayoutFrom( ... ) - RETURN HB_QBoxLayout():from( ... ) - FUNCTION QBoxLayoutFromPointer( ... ) RETURN HB_QBoxLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQBrush.prg b/harbour/contrib/hbqt/qtgui/g/TQBrush.prg index 8d420c11a6..68c6073c05 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQBrush.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQBrush.prg @@ -98,9 +98,6 @@ FUNCTION QBrush( ... ) RETURN HB_QBrush():new( ... ) -FUNCTION QBrushFrom( ... ) - RETURN HB_QBrush():from( ... ) - FUNCTION QBrushFromPointer( ... ) RETURN HB_QBrush():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQButtonGroup.prg b/harbour/contrib/hbqt/qtgui/g/TQButtonGroup.prg index fe56cdc0f5..54c4bcb966 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQButtonGroup.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQButtonGroup.prg @@ -98,9 +98,6 @@ FUNCTION QButtonGroup( ... ) RETURN HB_QButtonGroup():new( ... ) -FUNCTION QButtonGroupFrom( ... ) - RETURN HB_QButtonGroup():from( ... ) - FUNCTION QButtonGroupFromPointer( ... ) RETURN HB_QButtonGroup():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQCalendarWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQCalendarWidget.prg index 23383e8d37..f73360679e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQCalendarWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQCalendarWidget.prg @@ -98,9 +98,6 @@ FUNCTION QCalendarWidget( ... ) RETURN HB_QCalendarWidget():new( ... ) -FUNCTION QCalendarWidgetFrom( ... ) - RETURN HB_QCalendarWidget():from( ... ) - FUNCTION QCalendarWidgetFromPointer( ... ) RETURN HB_QCalendarWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQCheckBox.prg b/harbour/contrib/hbqt/qtgui/g/TQCheckBox.prg index 414fae5c48..81ff9ed5a4 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQCheckBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQCheckBox.prg @@ -98,9 +98,6 @@ FUNCTION QCheckBox( ... ) RETURN HB_QCheckBox():new( ... ) -FUNCTION QCheckBoxFrom( ... ) - RETURN HB_QCheckBox():from( ... ) - FUNCTION QCheckBoxFromPointer( ... ) RETURN HB_QCheckBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQClipboard.prg b/harbour/contrib/hbqt/qtgui/g/TQClipboard.prg index 8e75239b27..fc3475c571 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQClipboard.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQClipboard.prg @@ -98,9 +98,6 @@ FUNCTION QClipboard( ... ) RETURN HB_QClipboard():new( ... ) -FUNCTION QClipboardFrom( ... ) - RETURN HB_QClipboard():from( ... ) - FUNCTION QClipboardFromPointer( ... ) RETURN HB_QClipboard():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQColor.prg b/harbour/contrib/hbqt/qtgui/g/TQColor.prg index 5ee9052476..5b0a690346 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQColor.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQColor.prg @@ -98,9 +98,6 @@ FUNCTION QColor( ... ) RETURN HB_QColor():new( ... ) -FUNCTION QColorFrom( ... ) - RETURN HB_QColor():from( ... ) - FUNCTION QColorFromPointer( ... ) RETURN HB_QColor():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQColorDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQColorDialog.prg index ebbf11b73f..2ab31ad43b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQColorDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQColorDialog.prg @@ -98,9 +98,6 @@ FUNCTION QColorDialog( ... ) RETURN HB_QColorDialog():new( ... ) -FUNCTION QColorDialogFrom( ... ) - RETURN HB_QColorDialog():from( ... ) - FUNCTION QColorDialogFromPointer( ... ) RETURN HB_QColorDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQComboBox.prg b/harbour/contrib/hbqt/qtgui/g/TQComboBox.prg index 9f2533efd3..30b2b42d05 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQComboBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQComboBox.prg @@ -98,9 +98,6 @@ FUNCTION QComboBox( ... ) RETURN HB_QComboBox():new( ... ) -FUNCTION QComboBoxFrom( ... ) - RETURN HB_QComboBox():from( ... ) - FUNCTION QComboBoxFromPointer( ... ) RETURN HB_QComboBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQCommandLinkButton.prg b/harbour/contrib/hbqt/qtgui/g/TQCommandLinkButton.prg index baa7034f45..db65fe4ff5 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQCommandLinkButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQCommandLinkButton.prg @@ -98,9 +98,6 @@ FUNCTION QCommandLinkButton( ... ) RETURN HB_QCommandLinkButton():new( ... ) -FUNCTION QCommandLinkButtonFrom( ... ) - RETURN HB_QCommandLinkButton():from( ... ) - FUNCTION QCommandLinkButtonFromPointer( ... ) RETURN HB_QCommandLinkButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQCommonStyle.prg b/harbour/contrib/hbqt/qtgui/g/TQCommonStyle.prg index 6d725a1e45..10c5baddcb 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQCommonStyle.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQCommonStyle.prg @@ -98,9 +98,6 @@ FUNCTION QCommonStyle( ... ) RETURN HB_QCommonStyle():new( ... ) -FUNCTION QCommonStyleFrom( ... ) - RETURN HB_QCommonStyle():from( ... ) - FUNCTION QCommonStyleFromPointer( ... ) RETURN HB_QCommonStyle():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQCompleter.prg b/harbour/contrib/hbqt/qtgui/g/TQCompleter.prg index 4e69b3221e..dcb2d01797 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQCompleter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQCompleter.prg @@ -98,9 +98,6 @@ FUNCTION QCompleter( ... ) RETURN HB_QCompleter():new( ... ) -FUNCTION QCompleterFrom( ... ) - RETURN HB_QCompleter():from( ... ) - FUNCTION QCompleterFromPointer( ... ) RETURN HB_QCompleter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQConicalGradient.prg b/harbour/contrib/hbqt/qtgui/g/TQConicalGradient.prg index 574c9b36b9..d5b148a7d6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQConicalGradient.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQConicalGradient.prg @@ -98,9 +98,6 @@ FUNCTION QConicalGradient( ... ) RETURN HB_QConicalGradient():new( ... ) -FUNCTION QConicalGradientFrom( ... ) - RETURN HB_QConicalGradient():from( ... ) - FUNCTION QConicalGradientFromPointer( ... ) RETURN HB_QConicalGradient():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQContextMenuEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQContextMenuEvent.prg index 0797d3e44f..888155a1a2 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQContextMenuEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQContextMenuEvent.prg @@ -98,9 +98,6 @@ FUNCTION QContextMenuEvent( ... ) RETURN HB_QContextMenuEvent():new( ... ) -FUNCTION QContextMenuEventFrom( ... ) - RETURN HB_QContextMenuEvent():from( ... ) - FUNCTION QContextMenuEventFromPointer( ... ) RETURN HB_QContextMenuEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQCursor.prg b/harbour/contrib/hbqt/qtgui/g/TQCursor.prg index f3e5f97a25..966669abec 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQCursor.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQCursor.prg @@ -98,9 +98,6 @@ FUNCTION QCursor( ... ) RETURN HB_QCursor():new( ... ) -FUNCTION QCursorFrom( ... ) - RETURN HB_QCursor():from( ... ) - FUNCTION QCursorFromPointer( ... ) RETURN HB_QCursor():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDateEdit.prg b/harbour/contrib/hbqt/qtgui/g/TQDateEdit.prg index deb169a2d6..5e519a4d80 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDateEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDateEdit.prg @@ -98,9 +98,6 @@ FUNCTION QDateEdit( ... ) RETURN HB_QDateEdit():new( ... ) -FUNCTION QDateEditFrom( ... ) - RETURN HB_QDateEdit():from( ... ) - FUNCTION QDateEditFromPointer( ... ) RETURN HB_QDateEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDateTimeEdit.prg b/harbour/contrib/hbqt/qtgui/g/TQDateTimeEdit.prg index 7548139b67..403adf30cc 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDateTimeEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDateTimeEdit.prg @@ -98,9 +98,6 @@ FUNCTION QDateTimeEdit( ... ) RETURN HB_QDateTimeEdit():new( ... ) -FUNCTION QDateTimeEditFrom( ... ) - RETURN HB_QDateTimeEdit():from( ... ) - FUNCTION QDateTimeEditFromPointer( ... ) RETURN HB_QDateTimeEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDesktopServices.prg b/harbour/contrib/hbqt/qtgui/g/TQDesktopServices.prg index 474b55e792..10433b5eb2 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDesktopServices.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDesktopServices.prg @@ -98,9 +98,6 @@ FUNCTION QDesktopServices( ... ) RETURN HB_QDesktopServices():new( ... ) -FUNCTION QDesktopServicesFrom( ... ) - RETURN HB_QDesktopServices():from( ... ) - FUNCTION QDesktopServicesFromPointer( ... ) RETURN HB_QDesktopServices():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDesktopWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQDesktopWidget.prg index bc547a76d8..1d74bf3f1a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDesktopWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDesktopWidget.prg @@ -98,9 +98,6 @@ FUNCTION QDesktopWidget( ... ) RETURN HB_QDesktopWidget():new( ... ) -FUNCTION QDesktopWidgetFrom( ... ) - RETURN HB_QDesktopWidget():from( ... ) - FUNCTION QDesktopWidgetFromPointer( ... ) RETURN HB_QDesktopWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDial.prg b/harbour/contrib/hbqt/qtgui/g/TQDial.prg index ac7fd7246f..b8f092cd09 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDial.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDial.prg @@ -98,9 +98,6 @@ FUNCTION QDial( ... ) RETURN HB_QDial():new( ... ) -FUNCTION QDialFrom( ... ) - RETURN HB_QDial():from( ... ) - FUNCTION QDialFromPointer( ... ) RETURN HB_QDial():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQDialog.prg index c2b93a2328..0fdbadeaf9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDialog.prg @@ -98,9 +98,6 @@ FUNCTION QDialog( ... ) RETURN HB_QDialog():new( ... ) -FUNCTION QDialogFrom( ... ) - RETURN HB_QDialog():from( ... ) - FUNCTION QDialogFromPointer( ... ) RETURN HB_QDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDirModel.prg b/harbour/contrib/hbqt/qtgui/g/TQDirModel.prg index c820dcdba6..3d2c958cda 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDirModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDirModel.prg @@ -98,9 +98,6 @@ FUNCTION QDirModel( ... ) RETURN HB_QDirModel():new( ... ) -FUNCTION QDirModelFrom( ... ) - RETURN HB_QDirModel():from( ... ) - FUNCTION QDirModelFromPointer( ... ) RETURN HB_QDirModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDockWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQDockWidget.prg index 1abfef87e7..b2969db5f3 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDockWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDockWidget.prg @@ -98,9 +98,6 @@ FUNCTION QDockWidget( ... ) RETURN HB_QDockWidget():new( ... ) -FUNCTION QDockWidgetFrom( ... ) - RETURN HB_QDockWidget():from( ... ) - FUNCTION QDockWidgetFromPointer( ... ) RETURN HB_QDockWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDoubleSpinBox.prg b/harbour/contrib/hbqt/qtgui/g/TQDoubleSpinBox.prg index d38ef89fc1..9956344f9f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDoubleSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDoubleSpinBox.prg @@ -98,9 +98,6 @@ FUNCTION QDoubleSpinBox( ... ) RETURN HB_QDoubleSpinBox():new( ... ) -FUNCTION QDoubleSpinBoxFrom( ... ) - RETURN HB_QDoubleSpinBox():from( ... ) - FUNCTION QDoubleSpinBoxFromPointer( ... ) RETURN HB_QDoubleSpinBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDoubleValidator.prg b/harbour/contrib/hbqt/qtgui/g/TQDoubleValidator.prg index 4a1107dbfb..c2213d5981 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDoubleValidator.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDoubleValidator.prg @@ -98,9 +98,6 @@ FUNCTION QDoubleValidator( ... ) RETURN HB_QDoubleValidator():new( ... ) -FUNCTION QDoubleValidatorFrom( ... ) - RETURN HB_QDoubleValidator():from( ... ) - FUNCTION QDoubleValidatorFromPointer( ... ) RETURN HB_QDoubleValidator():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDrag.prg b/harbour/contrib/hbqt/qtgui/g/TQDrag.prg index 6852694d8b..2f138109fe 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDrag.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDrag.prg @@ -98,9 +98,6 @@ FUNCTION QDrag( ... ) RETURN HB_QDrag():new( ... ) -FUNCTION QDragFrom( ... ) - RETURN HB_QDrag():from( ... ) - FUNCTION QDragFromPointer( ... ) RETURN HB_QDrag():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDragEnterEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQDragEnterEvent.prg index c6b353646b..e9f6bffa14 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDragEnterEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDragEnterEvent.prg @@ -98,9 +98,6 @@ FUNCTION QDragEnterEvent( ... ) RETURN HB_QDragEnterEvent():new( ... ) -FUNCTION QDragEnterEventFrom( ... ) - RETURN HB_QDragEnterEvent():from( ... ) - FUNCTION QDragEnterEventFromPointer( ... ) RETURN HB_QDragEnterEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDragLeaveEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQDragLeaveEvent.prg index 4a3964182a..20b915a21e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDragLeaveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDragLeaveEvent.prg @@ -98,9 +98,6 @@ FUNCTION QDragLeaveEvent( ... ) RETURN HB_QDragLeaveEvent():new( ... ) -FUNCTION QDragLeaveEventFrom( ... ) - RETURN HB_QDragLeaveEvent():from( ... ) - FUNCTION QDragLeaveEventFromPointer( ... ) RETURN HB_QDragLeaveEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDragMoveEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQDragMoveEvent.prg index 194a11c0f5..84a8251ab7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDragMoveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDragMoveEvent.prg @@ -98,9 +98,6 @@ FUNCTION QDragMoveEvent( ... ) RETURN HB_QDragMoveEvent():new( ... ) -FUNCTION QDragMoveEventFrom( ... ) - RETURN HB_QDragMoveEvent():from( ... ) - FUNCTION QDragMoveEventFromPointer( ... ) RETURN HB_QDragMoveEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQDropEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQDropEvent.prg index 7f0c4d2a41..11fde966be 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQDropEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQDropEvent.prg @@ -98,9 +98,6 @@ FUNCTION QDropEvent( ... ) RETURN HB_QDropEvent():new( ... ) -FUNCTION QDropEventFrom( ... ) - RETURN HB_QDropEvent():from( ... ) - FUNCTION QDropEventFromPointer( ... ) RETURN HB_QDropEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQErrorMessage.prg b/harbour/contrib/hbqt/qtgui/g/TQErrorMessage.prg index 20d2927cac..95d1b39d5e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQErrorMessage.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQErrorMessage.prg @@ -98,9 +98,6 @@ FUNCTION QErrorMessage( ... ) RETURN HB_QErrorMessage():new( ... ) -FUNCTION QErrorMessageFrom( ... ) - RETURN HB_QErrorMessage():from( ... ) - FUNCTION QErrorMessageFromPointer( ... ) RETURN HB_QErrorMessage():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFileDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQFileDialog.prg index ac8a690a43..b3f95a23a9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFileDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFileDialog.prg @@ -98,9 +98,6 @@ FUNCTION QFileDialog( ... ) RETURN HB_QFileDialog():new( ... ) -FUNCTION QFileDialogFrom( ... ) - RETURN HB_QFileDialog():from( ... ) - FUNCTION QFileDialogFromPointer( ... ) RETURN HB_QFileDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFileIconProvider.prg b/harbour/contrib/hbqt/qtgui/g/TQFileIconProvider.prg index 64cf9c9dbb..dd6bb12f2e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFileIconProvider.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFileIconProvider.prg @@ -98,9 +98,6 @@ FUNCTION QFileIconProvider( ... ) RETURN HB_QFileIconProvider():new( ... ) -FUNCTION QFileIconProviderFrom( ... ) - RETURN HB_QFileIconProvider():from( ... ) - FUNCTION QFileIconProviderFromPointer( ... ) RETURN HB_QFileIconProvider():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFileSystemModel.prg b/harbour/contrib/hbqt/qtgui/g/TQFileSystemModel.prg index abe6b5638c..36223c7b32 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFileSystemModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFileSystemModel.prg @@ -98,9 +98,6 @@ FUNCTION QFileSystemModel( ... ) RETURN HB_QFileSystemModel():new( ... ) -FUNCTION QFileSystemModelFrom( ... ) - RETURN HB_QFileSystemModel():from( ... ) - FUNCTION QFileSystemModelFromPointer( ... ) RETURN HB_QFileSystemModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFocusEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQFocusEvent.prg index a7fd7b5821..523b7566ba 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFocusEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFocusEvent.prg @@ -98,9 +98,6 @@ FUNCTION QFocusEvent( ... ) RETURN HB_QFocusEvent():new( ... ) -FUNCTION QFocusEventFrom( ... ) - RETURN HB_QFocusEvent():from( ... ) - FUNCTION QFocusEventFromPointer( ... ) RETURN HB_QFocusEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFocusFrame.prg b/harbour/contrib/hbqt/qtgui/g/TQFocusFrame.prg index 1cf1e34b17..b911fcabb4 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFocusFrame.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFocusFrame.prg @@ -98,9 +98,6 @@ FUNCTION QFocusFrame( ... ) RETURN HB_QFocusFrame():new( ... ) -FUNCTION QFocusFrameFrom( ... ) - RETURN HB_QFocusFrame():from( ... ) - FUNCTION QFocusFrameFromPointer( ... ) RETURN HB_QFocusFrame():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFont.prg b/harbour/contrib/hbqt/qtgui/g/TQFont.prg index ad0440850d..6f5c0b881f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFont.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFont.prg @@ -98,9 +98,6 @@ FUNCTION QFont( ... ) RETURN HB_QFont():new( ... ) -FUNCTION QFontFrom( ... ) - RETURN HB_QFont():from( ... ) - FUNCTION QFontFromPointer( ... ) RETURN HB_QFont():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFontComboBox.prg b/harbour/contrib/hbqt/qtgui/g/TQFontComboBox.prg index 9a3834fe9c..fc382dea72 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFontComboBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFontComboBox.prg @@ -98,9 +98,6 @@ FUNCTION QFontComboBox( ... ) RETURN HB_QFontComboBox():new( ... ) -FUNCTION QFontComboBoxFrom( ... ) - RETURN HB_QFontComboBox():from( ... ) - FUNCTION QFontComboBoxFromPointer( ... ) RETURN HB_QFontComboBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFontDatabase.prg b/harbour/contrib/hbqt/qtgui/g/TQFontDatabase.prg index 1e1f2cb7ad..2722a88768 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFontDatabase.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFontDatabase.prg @@ -98,9 +98,6 @@ FUNCTION QFontDatabase( ... ) RETURN HB_QFontDatabase():new( ... ) -FUNCTION QFontDatabaseFrom( ... ) - RETURN HB_QFontDatabase():from( ... ) - FUNCTION QFontDatabaseFromPointer( ... ) RETURN HB_QFontDatabase():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFontDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQFontDialog.prg index 277a1e9556..86d25d4771 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFontDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFontDialog.prg @@ -98,9 +98,6 @@ FUNCTION QFontDialog( ... ) RETURN HB_QFontDialog():new( ... ) -FUNCTION QFontDialogFrom( ... ) - RETURN HB_QFontDialog():from( ... ) - FUNCTION QFontDialogFromPointer( ... ) RETURN HB_QFontDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFontInfo.prg b/harbour/contrib/hbqt/qtgui/g/TQFontInfo.prg index 6dc3c3b6ee..ac42981c0d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFontInfo.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFontInfo.prg @@ -98,9 +98,6 @@ FUNCTION QFontInfo( ... ) RETURN HB_QFontInfo():new( ... ) -FUNCTION QFontInfoFrom( ... ) - RETURN HB_QFontInfo():from( ... ) - FUNCTION QFontInfoFromPointer( ... ) RETURN HB_QFontInfo():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFontMetrics.prg b/harbour/contrib/hbqt/qtgui/g/TQFontMetrics.prg index 79fa781d64..860ff3a433 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFontMetrics.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFontMetrics.prg @@ -98,9 +98,6 @@ FUNCTION QFontMetrics( ... ) RETURN HB_QFontMetrics():new( ... ) -FUNCTION QFontMetricsFrom( ... ) - RETURN HB_QFontMetrics():from( ... ) - FUNCTION QFontMetricsFromPointer( ... ) RETURN HB_QFontMetrics():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFontMetricsF.prg b/harbour/contrib/hbqt/qtgui/g/TQFontMetricsF.prg index 7d5e536c6d..383e36744c 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFontMetricsF.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFontMetricsF.prg @@ -98,9 +98,6 @@ FUNCTION QFontMetricsF( ... ) RETURN HB_QFontMetricsF():new( ... ) -FUNCTION QFontMetricsFFrom( ... ) - RETURN HB_QFontMetricsF():from( ... ) - FUNCTION QFontMetricsFFromPointer( ... ) RETURN HB_QFontMetricsF():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFormLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQFormLayout.prg index bc23d64d7d..679d25f42a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFormLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFormLayout.prg @@ -98,9 +98,6 @@ FUNCTION QFormLayout( ... ) RETURN HB_QFormLayout():new( ... ) -FUNCTION QFormLayoutFrom( ... ) - RETURN HB_QFormLayout():from( ... ) - FUNCTION QFormLayoutFromPointer( ... ) RETURN HB_QFormLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQFrame.prg b/harbour/contrib/hbqt/qtgui/g/TQFrame.prg index 973d90a3b7..c88e950772 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQFrame.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQFrame.prg @@ -98,9 +98,6 @@ FUNCTION QFrame( ... ) RETURN HB_QFrame():new( ... ) -FUNCTION QFrameFrom( ... ) - RETURN HB_QFrame():from( ... ) - FUNCTION QFrameFromPointer( ... ) RETURN HB_QFrame():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGradient.prg b/harbour/contrib/hbqt/qtgui/g/TQGradient.prg index 09ff6d8342..9d9c35d02a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGradient.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGradient.prg @@ -98,9 +98,6 @@ FUNCTION QGradient( ... ) RETURN HB_QGradient():new( ... ) -FUNCTION QGradientFrom( ... ) - RETURN HB_QGradient():from( ... ) - FUNCTION QGradientFromPointer( ... ) RETURN HB_QGradient():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsEllipseItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsEllipseItem.prg index 1eddad8474..d1943f23ef 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsEllipseItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsEllipseItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsEllipseItem( ... ) RETURN HB_QGraphicsEllipseItem():new( ... ) -FUNCTION QGraphicsEllipseItemFrom( ... ) - RETURN HB_QGraphicsEllipseItem():from( ... ) - FUNCTION QGraphicsEllipseItemFromPointer( ... ) RETURN HB_QGraphicsEllipseItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsGridLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsGridLayout.prg index 013c4f308a..1a5ce1fe5f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsGridLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsGridLayout.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsGridLayout( ... ) RETURN HB_QGraphicsGridLayout():new( ... ) -FUNCTION QGraphicsGridLayoutFrom( ... ) - RETURN HB_QGraphicsGridLayout():from( ... ) - FUNCTION QGraphicsGridLayoutFromPointer( ... ) RETURN HB_QGraphicsGridLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsItem.prg index 56f2c60615..2537b4a1a8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsItem( ... ) RETURN HB_QGraphicsItem():new( ... ) -FUNCTION QGraphicsItemFrom( ... ) - RETURN HB_QGraphicsItem():from( ... ) - FUNCTION QGraphicsItemFromPointer( ... ) RETURN HB_QGraphicsItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemAnimation.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemAnimation.prg index 074a15f67c..e212864e25 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemAnimation.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemAnimation.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsItemAnimation( ... ) RETURN HB_QGraphicsItemAnimation():new( ... ) -FUNCTION QGraphicsItemAnimationFrom( ... ) - RETURN HB_QGraphicsItemAnimation():from( ... ) - FUNCTION QGraphicsItemAnimationFromPointer( ... ) RETURN HB_QGraphicsItemAnimation():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemGroup.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemGroup.prg index f753b3d7ec..13e7dbada7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemGroup.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsItemGroup.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsItemGroup( ... ) RETURN HB_QGraphicsItemGroup():new( ... ) -FUNCTION QGraphicsItemGroupFrom( ... ) - RETURN HB_QGraphicsItemGroup():from( ... ) - FUNCTION QGraphicsItemGroupFromPointer( ... ) RETURN HB_QGraphicsItemGroup():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayout.prg index 6afb16d693..dfebca1745 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayout.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsLayout( ... ) RETURN HB_QGraphicsLayout():new( ... ) -FUNCTION QGraphicsLayoutFrom( ... ) - RETURN HB_QGraphicsLayout():from( ... ) - FUNCTION QGraphicsLayoutFromPointer( ... ) RETURN HB_QGraphicsLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayoutItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayoutItem.prg index 6fc199f13a..a6d41ab60f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayoutItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLayoutItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsLayoutItem( ... ) RETURN HB_QGraphicsLayoutItem():new( ... ) -FUNCTION QGraphicsLayoutItemFrom( ... ) - RETURN HB_QGraphicsLayoutItem():from( ... ) - FUNCTION QGraphicsLayoutItemFromPointer( ... ) RETURN HB_QGraphicsLayoutItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLineItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLineItem.prg index a995fddf90..945761ffa9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLineItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLineItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsLineItem( ... ) RETURN HB_QGraphicsLineItem():new( ... ) -FUNCTION QGraphicsLineItemFrom( ... ) - RETURN HB_QGraphicsLineItem():from( ... ) - FUNCTION QGraphicsLineItemFromPointer( ... ) RETURN HB_QGraphicsLineItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLinearLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLinearLayout.prg index 4320f16a69..56ed793147 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsLinearLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsLinearLayout.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsLinearLayout( ... ) RETURN HB_QGraphicsLinearLayout():new( ... ) -FUNCTION QGraphicsLinearLayoutFrom( ... ) - RETURN HB_QGraphicsLinearLayout():from( ... ) - FUNCTION QGraphicsLinearLayoutFromPointer( ... ) RETURN HB_QGraphicsLinearLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsPathItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsPathItem.prg index 96d057eaa4..57e7c95e51 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsPathItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsPathItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsPathItem( ... ) RETURN HB_QGraphicsPathItem():new( ... ) -FUNCTION QGraphicsPathItemFrom( ... ) - RETURN HB_QGraphicsPathItem():from( ... ) - FUNCTION QGraphicsPathItemFromPointer( ... ) RETURN HB_QGraphicsPathItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsPixmapItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsPixmapItem.prg index b93557bb9c..7cb73ff05d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsPixmapItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsPixmapItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsPixmapItem( ... ) RETURN HB_QGraphicsPixmapItem():new( ... ) -FUNCTION QGraphicsPixmapItemFrom( ... ) - RETURN HB_QGraphicsPixmapItem():from( ... ) - FUNCTION QGraphicsPixmapItemFromPointer( ... ) RETURN HB_QGraphicsPixmapItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsPolygonItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsPolygonItem.prg index 1e9ca910a9..fa9f64782a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsPolygonItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsPolygonItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsPolygonItem( ... ) RETURN HB_QGraphicsPolygonItem():new( ... ) -FUNCTION QGraphicsPolygonItemFrom( ... ) - RETURN HB_QGraphicsPolygonItem():from( ... ) - FUNCTION QGraphicsPolygonItemFromPointer( ... ) RETURN HB_QGraphicsPolygonItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsProxyWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsProxyWidget.prg index c2a181a1ca..8da9ef811c 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsProxyWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsProxyWidget.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsProxyWidget( ... ) RETURN HB_QGraphicsProxyWidget():new( ... ) -FUNCTION QGraphicsProxyWidgetFrom( ... ) - RETURN HB_QGraphicsProxyWidget():from( ... ) - FUNCTION QGraphicsProxyWidgetFromPointer( ... ) RETURN HB_QGraphicsProxyWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsRectItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsRectItem.prg index 9667529055..d03efadd5e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsRectItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsRectItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsRectItem( ... ) RETURN HB_QGraphicsRectItem():new( ... ) -FUNCTION QGraphicsRectItemFrom( ... ) - RETURN HB_QGraphicsRectItem():from( ... ) - FUNCTION QGraphicsRectItemFromPointer( ... ) RETURN HB_QGraphicsRectItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsScene.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsScene.prg index 63a8af4df8..e849c216fe 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsScene.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsScene.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsScene( ... ) RETURN HB_QGraphicsScene():new( ... ) -FUNCTION QGraphicsSceneFrom( ... ) - RETURN HB_QGraphicsScene():from( ... ) - FUNCTION QGraphicsSceneFromPointer( ... ) RETURN HB_QGraphicsScene():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneContextMenuEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneContextMenuEvent.prg index df4ccf6e54..f6270022a8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneContextMenuEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneContextMenuEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneContextMenuEvent( ... ) RETURN HB_QGraphicsSceneContextMenuEvent():new( ... ) -FUNCTION QGraphicsSceneContextMenuEventFrom( ... ) - RETURN HB_QGraphicsSceneContextMenuEvent():from( ... ) - FUNCTION QGraphicsSceneContextMenuEventFromPointer( ... ) RETURN HB_QGraphicsSceneContextMenuEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneDragDropEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneDragDropEvent.prg index 1d3a8c8e7d..99a53f1f4a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneDragDropEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneDragDropEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneDragDropEvent( ... ) RETURN HB_QGraphicsSceneDragDropEvent():new( ... ) -FUNCTION QGraphicsSceneDragDropEventFrom( ... ) - RETURN HB_QGraphicsSceneDragDropEvent():from( ... ) - FUNCTION QGraphicsSceneDragDropEventFromPointer( ... ) RETURN HB_QGraphicsSceneDragDropEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneEvent.prg index ccd29e3bbb..978880ab21 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneEvent( ... ) RETURN HB_QGraphicsSceneEvent():new( ... ) -FUNCTION QGraphicsSceneEventFrom( ... ) - RETURN HB_QGraphicsSceneEvent():from( ... ) - FUNCTION QGraphicsSceneEventFromPointer( ... ) RETURN HB_QGraphicsSceneEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHelpEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHelpEvent.prg index bdca64096d..8aeb3da272 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHelpEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHelpEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneHelpEvent( ... ) RETURN HB_QGraphicsSceneHelpEvent():new( ... ) -FUNCTION QGraphicsSceneHelpEventFrom( ... ) - RETURN HB_QGraphicsSceneHelpEvent():from( ... ) - FUNCTION QGraphicsSceneHelpEventFromPointer( ... ) RETURN HB_QGraphicsSceneHelpEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHoverEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHoverEvent.prg index 931fd9ad33..dc916832fa 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHoverEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneHoverEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneHoverEvent( ... ) RETURN HB_QGraphicsSceneHoverEvent():new( ... ) -FUNCTION QGraphicsSceneHoverEventFrom( ... ) - RETURN HB_QGraphicsSceneHoverEvent():from( ... ) - FUNCTION QGraphicsSceneHoverEventFromPointer( ... ) RETURN HB_QGraphicsSceneHoverEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMouseEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMouseEvent.prg index 9463675a5c..694722e323 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMouseEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMouseEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneMouseEvent( ... ) RETURN HB_QGraphicsSceneMouseEvent():new( ... ) -FUNCTION QGraphicsSceneMouseEventFrom( ... ) - RETURN HB_QGraphicsSceneMouseEvent():from( ... ) - FUNCTION QGraphicsSceneMouseEventFromPointer( ... ) RETURN HB_QGraphicsSceneMouseEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMoveEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMoveEvent.prg index 51ef31eeb1..e404581644 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMoveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneMoveEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneMoveEvent( ... ) RETURN HB_QGraphicsSceneMoveEvent():new( ... ) -FUNCTION QGraphicsSceneMoveEventFrom( ... ) - RETURN HB_QGraphicsSceneMoveEvent():from( ... ) - FUNCTION QGraphicsSceneMoveEventFromPointer( ... ) RETURN HB_QGraphicsSceneMoveEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneResizeEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneResizeEvent.prg index 42e3293f40..36b9b77530 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneResizeEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneResizeEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneResizeEvent( ... ) RETURN HB_QGraphicsSceneResizeEvent():new( ... ) -FUNCTION QGraphicsSceneResizeEventFrom( ... ) - RETURN HB_QGraphicsSceneResizeEvent():from( ... ) - FUNCTION QGraphicsSceneResizeEventFromPointer( ... ) RETURN HB_QGraphicsSceneResizeEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneWheelEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneWheelEvent.prg index f1ca600de6..09e6b04efc 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneWheelEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSceneWheelEvent.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSceneWheelEvent( ... ) RETURN HB_QGraphicsSceneWheelEvent():new( ... ) -FUNCTION QGraphicsSceneWheelEventFrom( ... ) - RETURN HB_QGraphicsSceneWheelEvent():from( ... ) - FUNCTION QGraphicsSceneWheelEventFromPointer( ... ) RETURN HB_QGraphicsSceneWheelEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSimpleTextItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSimpleTextItem.prg index b465e76eef..3a64dc5cc2 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsSimpleTextItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsSimpleTextItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsSimpleTextItem( ... ) RETURN HB_QGraphicsSimpleTextItem():new( ... ) -FUNCTION QGraphicsSimpleTextItemFrom( ... ) - RETURN HB_QGraphicsSimpleTextItem():from( ... ) - FUNCTION QGraphicsSimpleTextItemFromPointer( ... ) RETURN HB_QGraphicsSimpleTextItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsTextItem.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsTextItem.prg index 8b420a269c..78af4869d4 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsTextItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsTextItem.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsTextItem( ... ) RETURN HB_QGraphicsTextItem():new( ... ) -FUNCTION QGraphicsTextItemFrom( ... ) - RETURN HB_QGraphicsTextItem():from( ... ) - FUNCTION QGraphicsTextItemFromPointer( ... ) RETURN HB_QGraphicsTextItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsView.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsView.prg index e9c68607eb..f223b94d6a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsView.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsView.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsView( ... ) RETURN HB_QGraphicsView():new( ... ) -FUNCTION QGraphicsViewFrom( ... ) - RETURN HB_QGraphicsView():from( ... ) - FUNCTION QGraphicsViewFromPointer( ... ) RETURN HB_QGraphicsView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGraphicsWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQGraphicsWidget.prg index 3b132cfc37..292ebe3684 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGraphicsWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGraphicsWidget.prg @@ -98,9 +98,6 @@ FUNCTION QGraphicsWidget( ... ) RETURN HB_QGraphicsWidget():new( ... ) -FUNCTION QGraphicsWidgetFrom( ... ) - RETURN HB_QGraphicsWidget():from( ... ) - FUNCTION QGraphicsWidgetFromPointer( ... ) RETURN HB_QGraphicsWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGridLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQGridLayout.prg index af88aca4c7..a5da398046 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGridLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGridLayout.prg @@ -98,9 +98,6 @@ FUNCTION QGridLayout( ... ) RETURN HB_QGridLayout():new( ... ) -FUNCTION QGridLayoutFrom( ... ) - RETURN HB_QGridLayout():from( ... ) - FUNCTION QGridLayoutFromPointer( ... ) RETURN HB_QGridLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQGroupBox.prg b/harbour/contrib/hbqt/qtgui/g/TQGroupBox.prg index 2a81a80288..0b0968010b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQGroupBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQGroupBox.prg @@ -98,9 +98,6 @@ FUNCTION QGroupBox( ... ) RETURN HB_QGroupBox():new( ... ) -FUNCTION QGroupBoxFrom( ... ) - RETURN HB_QGroupBox():from( ... ) - FUNCTION QGroupBoxFromPointer( ... ) RETURN HB_QGroupBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQHBoxLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQHBoxLayout.prg index 152a8d1d95..f8a426e7af 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQHBoxLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQHBoxLayout.prg @@ -98,9 +98,6 @@ FUNCTION QHBoxLayout( ... ) RETURN HB_QHBoxLayout():new( ... ) -FUNCTION QHBoxLayoutFrom( ... ) - RETURN HB_QHBoxLayout():from( ... ) - FUNCTION QHBoxLayoutFromPointer( ... ) RETURN HB_QHBoxLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQHeaderView.prg b/harbour/contrib/hbqt/qtgui/g/TQHeaderView.prg index 6450ff9aef..de5a6f0a95 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQHeaderView.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQHeaderView.prg @@ -98,9 +98,6 @@ FUNCTION QHeaderView( ... ) RETURN HB_QHeaderView():new( ... ) -FUNCTION QHeaderViewFrom( ... ) - RETURN HB_QHeaderView():from( ... ) - FUNCTION QHeaderViewFromPointer( ... ) RETURN HB_QHeaderView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQHelpEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQHelpEvent.prg index 704a8ec3b9..3c11983e50 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQHelpEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQHelpEvent.prg @@ -98,9 +98,6 @@ FUNCTION QHelpEvent( ... ) RETURN HB_QHelpEvent():new( ... ) -FUNCTION QHelpEventFrom( ... ) - RETURN HB_QHelpEvent():from( ... ) - FUNCTION QHelpEventFromPointer( ... ) RETURN HB_QHelpEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQHideEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQHideEvent.prg index 3ce123ee05..bc9cde93e1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQHideEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQHideEvent.prg @@ -98,9 +98,6 @@ FUNCTION QHideEvent( ... ) RETURN HB_QHideEvent():new( ... ) -FUNCTION QHideEventFrom( ... ) - RETURN HB_QHideEvent():from( ... ) - FUNCTION QHideEventFromPointer( ... ) RETURN HB_QHideEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQIcon.prg b/harbour/contrib/hbqt/qtgui/g/TQIcon.prg index 8f580c314e..a283258948 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQIcon.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQIcon.prg @@ -98,9 +98,6 @@ FUNCTION QIcon( ... ) RETURN HB_QIcon():new( ... ) -FUNCTION QIconFrom( ... ) - RETURN HB_QIcon():from( ... ) - FUNCTION QIconFromPointer( ... ) RETURN HB_QIcon():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQImage.prg b/harbour/contrib/hbqt/qtgui/g/TQImage.prg index 82aae75dc7..c2d25fd59e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQImage.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQImage.prg @@ -98,9 +98,6 @@ FUNCTION QImage( ... ) RETURN HB_QImage():new( ... ) -FUNCTION QImageFrom( ... ) - RETURN HB_QImage():from( ... ) - FUNCTION QImageFromPointer( ... ) RETURN HB_QImage():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQImageReader.prg b/harbour/contrib/hbqt/qtgui/g/TQImageReader.prg index 70eaa534d5..012b4f0417 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQImageReader.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQImageReader.prg @@ -98,9 +98,6 @@ FUNCTION QImageReader( ... ) RETURN HB_QImageReader():new( ... ) -FUNCTION QImageReaderFrom( ... ) - RETURN HB_QImageReader():from( ... ) - FUNCTION QImageReaderFromPointer( ... ) RETURN HB_QImageReader():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQImageWriter.prg b/harbour/contrib/hbqt/qtgui/g/TQImageWriter.prg index 7eadbf32c1..2e24cae718 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQImageWriter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQImageWriter.prg @@ -98,9 +98,6 @@ FUNCTION QImageWriter( ... ) RETURN HB_QImageWriter():new( ... ) -FUNCTION QImageWriterFrom( ... ) - RETURN HB_QImageWriter():from( ... ) - FUNCTION QImageWriterFromPointer( ... ) RETURN HB_QImageWriter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQInputDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQInputDialog.prg index 81df23fe32..b4d2c993e9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQInputDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQInputDialog.prg @@ -98,9 +98,6 @@ FUNCTION QInputDialog( ... ) RETURN HB_QInputDialog():new( ... ) -FUNCTION QInputDialogFrom( ... ) - RETURN HB_QInputDialog():from( ... ) - FUNCTION QInputDialogFromPointer( ... ) RETURN HB_QInputDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQInputEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQInputEvent.prg index 6d5f2fa16e..594c853353 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQInputEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQInputEvent.prg @@ -98,9 +98,6 @@ FUNCTION QInputEvent( ... ) RETURN HB_QInputEvent():new( ... ) -FUNCTION QInputEventFrom( ... ) - RETURN HB_QInputEvent():from( ... ) - FUNCTION QInputEventFromPointer( ... ) RETURN HB_QInputEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQInputMethodEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQInputMethodEvent.prg index f8fe2159bc..97e4a97645 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQInputMethodEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQInputMethodEvent.prg @@ -98,9 +98,6 @@ FUNCTION QInputMethodEvent( ... ) RETURN HB_QInputMethodEvent():new( ... ) -FUNCTION QInputMethodEventFrom( ... ) - RETURN HB_QInputMethodEvent():from( ... ) - FUNCTION QInputMethodEventFromPointer( ... ) RETURN HB_QInputMethodEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQIntValidator.prg b/harbour/contrib/hbqt/qtgui/g/TQIntValidator.prg index d6fe2298b6..c1de40b40b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQIntValidator.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQIntValidator.prg @@ -98,9 +98,6 @@ FUNCTION QIntValidator( ... ) RETURN HB_QIntValidator():new( ... ) -FUNCTION QIntValidatorFrom( ... ) - RETURN HB_QIntValidator():from( ... ) - FUNCTION QIntValidatorFromPointer( ... ) RETURN HB_QIntValidator():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQItemDelegate.prg b/harbour/contrib/hbqt/qtgui/g/TQItemDelegate.prg index 092c446c09..c9c5b27775 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQItemDelegate.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQItemDelegate.prg @@ -98,9 +98,6 @@ FUNCTION QItemDelegate( ... ) RETURN HB_QItemDelegate():new( ... ) -FUNCTION QItemDelegateFrom( ... ) - RETURN HB_QItemDelegate():from( ... ) - FUNCTION QItemDelegateFromPointer( ... ) RETURN HB_QItemDelegate():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQItemEditorCreatorBase.prg b/harbour/contrib/hbqt/qtgui/g/TQItemEditorCreatorBase.prg index 62561432f2..74da54b515 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQItemEditorCreatorBase.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQItemEditorCreatorBase.prg @@ -98,9 +98,6 @@ FUNCTION QItemEditorCreatorBase( ... ) RETURN HB_QItemEditorCreatorBase():new( ... ) -FUNCTION QItemEditorCreatorBaseFrom( ... ) - RETURN HB_QItemEditorCreatorBase():from( ... ) - FUNCTION QItemEditorCreatorBaseFromPointer( ... ) RETURN HB_QItemEditorCreatorBase():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQItemEditorFactory.prg b/harbour/contrib/hbqt/qtgui/g/TQItemEditorFactory.prg index 864e38541a..e4ee1c50dd 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQItemEditorFactory.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQItemEditorFactory.prg @@ -98,9 +98,6 @@ FUNCTION QItemEditorFactory( ... ) RETURN HB_QItemEditorFactory():new( ... ) -FUNCTION QItemEditorFactoryFrom( ... ) - RETURN HB_QItemEditorFactory():from( ... ) - FUNCTION QItemEditorFactoryFromPointer( ... ) RETURN HB_QItemEditorFactory():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQItemSelection.prg b/harbour/contrib/hbqt/qtgui/g/TQItemSelection.prg index a9d240a6d0..9215202cae 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQItemSelection.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQItemSelection.prg @@ -98,9 +98,6 @@ FUNCTION QItemSelection( ... ) RETURN HB_QItemSelection():new( ... ) -FUNCTION QItemSelectionFrom( ... ) - RETURN HB_QItemSelection():from( ... ) - FUNCTION QItemSelectionFromPointer( ... ) RETURN HB_QItemSelection():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQItemSelectionModel.prg b/harbour/contrib/hbqt/qtgui/g/TQItemSelectionModel.prg index e1f8f91e54..8ac914e981 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQItemSelectionModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQItemSelectionModel.prg @@ -98,9 +98,6 @@ FUNCTION QItemSelectionModel( ... ) RETURN HB_QItemSelectionModel():new( ... ) -FUNCTION QItemSelectionModelFrom( ... ) - RETURN HB_QItemSelectionModel():from( ... ) - FUNCTION QItemSelectionModelFromPointer( ... ) RETURN HB_QItemSelectionModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQKeyEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQKeyEvent.prg index 517c7c19e4..97e7d63c80 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQKeyEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQKeyEvent.prg @@ -98,9 +98,6 @@ FUNCTION QKeyEvent( ... ) RETURN HB_QKeyEvent():new( ... ) -FUNCTION QKeyEventFrom( ... ) - RETURN HB_QKeyEvent():from( ... ) - FUNCTION QKeyEventFromPointer( ... ) RETURN HB_QKeyEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQKeySequence.prg b/harbour/contrib/hbqt/qtgui/g/TQKeySequence.prg index 6cbc64160a..91874b4ed1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQKeySequence.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQKeySequence.prg @@ -98,9 +98,6 @@ FUNCTION QKeySequence( ... ) RETURN HB_QKeySequence():new( ... ) -FUNCTION QKeySequenceFrom( ... ) - RETURN HB_QKeySequence():from( ... ) - FUNCTION QKeySequenceFromPointer( ... ) RETURN HB_QKeySequence():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQLCDNumber.prg b/harbour/contrib/hbqt/qtgui/g/TQLCDNumber.prg index 2a7d499823..9a70def5f7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQLCDNumber.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQLCDNumber.prg @@ -98,9 +98,6 @@ FUNCTION QLCDNumber( ... ) RETURN HB_QLCDNumber():new( ... ) -FUNCTION QLCDNumberFrom( ... ) - RETURN HB_QLCDNumber():from( ... ) - FUNCTION QLCDNumberFromPointer( ... ) RETURN HB_QLCDNumber():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQLabel.prg b/harbour/contrib/hbqt/qtgui/g/TQLabel.prg index 098eb0ceb3..fe36f8f704 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQLabel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQLabel.prg @@ -98,9 +98,6 @@ FUNCTION QLabel( ... ) RETURN HB_QLabel():new( ... ) -FUNCTION QLabelFrom( ... ) - RETURN HB_QLabel():from( ... ) - FUNCTION QLabelFromPointer( ... ) RETURN HB_QLabel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQLayout.prg index f1968192b8..bb5f6a21c9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQLayout.prg @@ -98,9 +98,6 @@ FUNCTION QLayout( ... ) RETURN HB_QLayout():new( ... ) -FUNCTION QLayoutFrom( ... ) - RETURN HB_QLayout():from( ... ) - FUNCTION QLayoutFromPointer( ... ) RETURN HB_QLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQLayoutItem.prg b/harbour/contrib/hbqt/qtgui/g/TQLayoutItem.prg index 25cac96357..db4750f83b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQLayoutItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQLayoutItem.prg @@ -98,9 +98,6 @@ FUNCTION QLayoutItem( ... ) RETURN HB_QLayoutItem():new( ... ) -FUNCTION QLayoutItemFrom( ... ) - RETURN HB_QLayoutItem():from( ... ) - FUNCTION QLayoutItemFromPointer( ... ) RETURN HB_QLayoutItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQLineEdit.prg b/harbour/contrib/hbqt/qtgui/g/TQLineEdit.prg index 68c0abbcf0..93e826e5c2 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQLineEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQLineEdit.prg @@ -98,9 +98,6 @@ FUNCTION QLineEdit( ... ) RETURN HB_QLineEdit():new( ... ) -FUNCTION QLineEditFrom( ... ) - RETURN HB_QLineEdit():from( ... ) - FUNCTION QLineEditFromPointer( ... ) RETURN HB_QLineEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQLinearGradient.prg b/harbour/contrib/hbqt/qtgui/g/TQLinearGradient.prg index a6e3a0a58b..bae8bf4505 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQLinearGradient.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQLinearGradient.prg @@ -98,9 +98,6 @@ FUNCTION QLinearGradient( ... ) RETURN HB_QLinearGradient():new( ... ) -FUNCTION QLinearGradientFrom( ... ) - RETURN HB_QLinearGradient():from( ... ) - FUNCTION QLinearGradientFromPointer( ... ) RETURN HB_QLinearGradient():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQListView.prg b/harbour/contrib/hbqt/qtgui/g/TQListView.prg index 9af060addf..92a0123834 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQListView.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQListView.prg @@ -98,9 +98,6 @@ FUNCTION QListView( ... ) RETURN HB_QListView():new( ... ) -FUNCTION QListViewFrom( ... ) - RETURN HB_QListView():from( ... ) - FUNCTION QListViewFromPointer( ... ) RETURN HB_QListView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQListWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQListWidget.prg index 1d57670766..1a9225ed05 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQListWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQListWidget.prg @@ -98,9 +98,6 @@ FUNCTION QListWidget( ... ) RETURN HB_QListWidget():new( ... ) -FUNCTION QListWidgetFrom( ... ) - RETURN HB_QListWidget():from( ... ) - FUNCTION QListWidgetFromPointer( ... ) RETURN HB_QListWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQListWidgetItem.prg b/harbour/contrib/hbqt/qtgui/g/TQListWidgetItem.prg index 23a3af9ce6..e9b2217c14 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQListWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQListWidgetItem.prg @@ -98,9 +98,6 @@ FUNCTION QListWidgetItem( ... ) RETURN HB_QListWidgetItem():new( ... ) -FUNCTION QListWidgetItemFrom( ... ) - RETURN HB_QListWidgetItem():from( ... ) - FUNCTION QListWidgetItemFromPointer( ... ) RETURN HB_QListWidgetItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMainWindow.prg b/harbour/contrib/hbqt/qtgui/g/TQMainWindow.prg index d2ed07786d..bdaa19373d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMainWindow.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMainWindow.prg @@ -98,9 +98,6 @@ FUNCTION QMainWindow( ... ) RETURN HB_QMainWindow():new( ... ) -FUNCTION QMainWindowFrom( ... ) - RETURN HB_QMainWindow():from( ... ) - FUNCTION QMainWindowFromPointer( ... ) RETURN HB_QMainWindow():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMatrix.prg b/harbour/contrib/hbqt/qtgui/g/TQMatrix.prg index 551e1143ad..c235041787 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMatrix.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMatrix.prg @@ -98,9 +98,6 @@ FUNCTION QMatrix( ... ) RETURN HB_QMatrix():new( ... ) -FUNCTION QMatrixFrom( ... ) - RETURN HB_QMatrix():from( ... ) - FUNCTION QMatrixFromPointer( ... ) RETURN HB_QMatrix():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMdiArea.prg b/harbour/contrib/hbqt/qtgui/g/TQMdiArea.prg index e7cf3a6aaf..ab4b75c4bb 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMdiArea.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMdiArea.prg @@ -98,9 +98,6 @@ FUNCTION QMdiArea( ... ) RETURN HB_QMdiArea():new( ... ) -FUNCTION QMdiAreaFrom( ... ) - RETURN HB_QMdiArea():from( ... ) - FUNCTION QMdiAreaFromPointer( ... ) RETURN HB_QMdiArea():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMdiSubWindow.prg b/harbour/contrib/hbqt/qtgui/g/TQMdiSubWindow.prg index e0d52d72de..740840b001 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMdiSubWindow.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMdiSubWindow.prg @@ -98,9 +98,6 @@ FUNCTION QMdiSubWindow( ... ) RETURN HB_QMdiSubWindow():new( ... ) -FUNCTION QMdiSubWindowFrom( ... ) - RETURN HB_QMdiSubWindow():from( ... ) - FUNCTION QMdiSubWindowFromPointer( ... ) RETURN HB_QMdiSubWindow():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMenu.prg b/harbour/contrib/hbqt/qtgui/g/TQMenu.prg index 70b80e4c18..6cb1fed1c1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMenu.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMenu.prg @@ -98,9 +98,6 @@ FUNCTION QMenu( ... ) RETURN HB_QMenu():new( ... ) -FUNCTION QMenuFrom( ... ) - RETURN HB_QMenu():from( ... ) - FUNCTION QMenuFromPointer( ... ) RETURN HB_QMenu():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMenuBar.prg b/harbour/contrib/hbqt/qtgui/g/TQMenuBar.prg index 2a84b67694..460d0b776c 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMenuBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMenuBar.prg @@ -98,9 +98,6 @@ FUNCTION QMenuBar( ... ) RETURN HB_QMenuBar():new( ... ) -FUNCTION QMenuBarFrom( ... ) - RETURN HB_QMenuBar():from( ... ) - FUNCTION QMenuBarFromPointer( ... ) RETURN HB_QMenuBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMessageBox.prg b/harbour/contrib/hbqt/qtgui/g/TQMessageBox.prg index f4799577e6..d4c4c6d431 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMessageBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMessageBox.prg @@ -98,9 +98,6 @@ FUNCTION QMessageBox( ... ) RETURN HB_QMessageBox():new( ... ) -FUNCTION QMessageBoxFrom( ... ) - RETURN HB_QMessageBox():from( ... ) - FUNCTION QMessageBoxFromPointer( ... ) RETURN HB_QMessageBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMouseEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQMouseEvent.prg index 1334c4c1c9..cf40004536 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMouseEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMouseEvent.prg @@ -98,9 +98,6 @@ FUNCTION QMouseEvent( ... ) RETURN HB_QMouseEvent():new( ... ) -FUNCTION QMouseEventFrom( ... ) - RETURN HB_QMouseEvent():from( ... ) - FUNCTION QMouseEventFromPointer( ... ) RETURN HB_QMouseEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMoveEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQMoveEvent.prg index 1c518e002f..c3b4ca1dcf 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMoveEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMoveEvent.prg @@ -98,9 +98,6 @@ FUNCTION QMoveEvent( ... ) RETURN HB_QMoveEvent():new( ... ) -FUNCTION QMoveEventFrom( ... ) - RETURN HB_QMoveEvent():from( ... ) - FUNCTION QMoveEventFromPointer( ... ) RETURN HB_QMoveEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQMovie.prg b/harbour/contrib/hbqt/qtgui/g/TQMovie.prg index c9efbf8f82..a5bbe209dc 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQMovie.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQMovie.prg @@ -98,9 +98,6 @@ FUNCTION QMovie( ... ) RETURN HB_QMovie():new( ... ) -FUNCTION QMovieFrom( ... ) - RETURN HB_QMovie():from( ... ) - FUNCTION QMovieFromPointer( ... ) RETURN HB_QMovie():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPageSetupDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQPageSetupDialog.prg index 35fb5ec5b8..e51df29eee 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPageSetupDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPageSetupDialog.prg @@ -98,9 +98,6 @@ FUNCTION QPageSetupDialog( ... ) RETURN HB_QPageSetupDialog():new( ... ) -FUNCTION QPageSetupDialogFrom( ... ) - RETURN HB_QPageSetupDialog():from( ... ) - FUNCTION QPageSetupDialogFromPointer( ... ) RETURN HB_QPageSetupDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPaintDevice.prg b/harbour/contrib/hbqt/qtgui/g/TQPaintDevice.prg index 307f10c8ff..5cca285fcd 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPaintDevice.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPaintDevice.prg @@ -98,9 +98,6 @@ FUNCTION QPaintDevice( ... ) RETURN HB_QPaintDevice():new( ... ) -FUNCTION QPaintDeviceFrom( ... ) - RETURN HB_QPaintDevice():from( ... ) - FUNCTION QPaintDeviceFromPointer( ... ) RETURN HB_QPaintDevice():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPaintEngine.prg b/harbour/contrib/hbqt/qtgui/g/TQPaintEngine.prg index 7ba2910732..5305ad511e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPaintEngine.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPaintEngine.prg @@ -98,9 +98,6 @@ FUNCTION QPaintEngine( ... ) RETURN HB_QPaintEngine():new( ... ) -FUNCTION QPaintEngineFrom( ... ) - RETURN HB_QPaintEngine():from( ... ) - FUNCTION QPaintEngineFromPointer( ... ) RETURN HB_QPaintEngine():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPaintEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQPaintEvent.prg index 90a36b817b..380aeeb8ab 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPaintEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPaintEvent.prg @@ -98,9 +98,6 @@ FUNCTION QPaintEvent( ... ) RETURN HB_QPaintEvent():new( ... ) -FUNCTION QPaintEventFrom( ... ) - RETURN HB_QPaintEvent():from( ... ) - FUNCTION QPaintEventFromPointer( ... ) RETURN HB_QPaintEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPainter.prg b/harbour/contrib/hbqt/qtgui/g/TQPainter.prg index 4cbbbac121..679077bca9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPainter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPainter.prg @@ -98,9 +98,6 @@ FUNCTION QPainter( ... ) RETURN HB_QPainter():new( ... ) -FUNCTION QPainterFrom( ... ) - RETURN HB_QPainter():from( ... ) - FUNCTION QPainterFromPointer( ... ) RETURN HB_QPainter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPainterPath.prg b/harbour/contrib/hbqt/qtgui/g/TQPainterPath.prg index 09aa2c4894..092f123bd3 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPainterPath.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPainterPath.prg @@ -98,9 +98,6 @@ FUNCTION QPainterPath( ... ) RETURN HB_QPainterPath():new( ... ) -FUNCTION QPainterPathFrom( ... ) - RETURN HB_QPainterPath():from( ... ) - FUNCTION QPainterPathFromPointer( ... ) RETURN HB_QPainterPath():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPalette.prg b/harbour/contrib/hbqt/qtgui/g/TQPalette.prg index e2de197760..c0ca55869f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPalette.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPalette.prg @@ -98,9 +98,6 @@ FUNCTION QPalette( ... ) RETURN HB_QPalette():new( ... ) -FUNCTION QPaletteFrom( ... ) - RETURN HB_QPalette():from( ... ) - FUNCTION QPaletteFromPointer( ... ) RETURN HB_QPalette():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPen.prg b/harbour/contrib/hbqt/qtgui/g/TQPen.prg index 4c8d2b0da8..211078066d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPen.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPen.prg @@ -98,9 +98,6 @@ FUNCTION QPen( ... ) RETURN HB_QPen():new( ... ) -FUNCTION QPenFrom( ... ) - RETURN HB_QPen():from( ... ) - FUNCTION QPenFromPointer( ... ) RETURN HB_QPen():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPicture.prg b/harbour/contrib/hbqt/qtgui/g/TQPicture.prg index 7b1900e293..f7f4dc935e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPicture.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPicture.prg @@ -98,9 +98,6 @@ FUNCTION QPicture( ... ) RETURN HB_QPicture():new( ... ) -FUNCTION QPictureFrom( ... ) - RETURN HB_QPicture():from( ... ) - FUNCTION QPictureFromPointer( ... ) RETURN HB_QPicture():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPixmap.prg b/harbour/contrib/hbqt/qtgui/g/TQPixmap.prg index ec2689b0d9..5715dd3f9a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPixmap.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPixmap.prg @@ -98,9 +98,6 @@ FUNCTION QPixmap( ... ) RETURN HB_QPixmap():new( ... ) -FUNCTION QPixmapFrom( ... ) - RETURN HB_QPixmap():from( ... ) - FUNCTION QPixmapFromPointer( ... ) RETURN HB_QPixmap():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPlainTextDocumentLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQPlainTextDocumentLayout.prg index d6457db932..448719dd41 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPlainTextDocumentLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPlainTextDocumentLayout.prg @@ -98,9 +98,6 @@ FUNCTION QPlainTextDocumentLayout( ... ) RETURN HB_QPlainTextDocumentLayout():new( ... ) -FUNCTION QPlainTextDocumentLayoutFrom( ... ) - RETURN HB_QPlainTextDocumentLayout():from( ... ) - FUNCTION QPlainTextDocumentLayoutFromPointer( ... ) RETURN HB_QPlainTextDocumentLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPlainTextEdit.prg b/harbour/contrib/hbqt/qtgui/g/TQPlainTextEdit.prg index 9859a4d4a1..41f9f79c7f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPlainTextEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPlainTextEdit.prg @@ -98,9 +98,6 @@ FUNCTION QPlainTextEdit( ... ) RETURN HB_QPlainTextEdit():new( ... ) -FUNCTION QPlainTextEditFrom( ... ) - RETURN HB_QPlainTextEdit():from( ... ) - FUNCTION QPlainTextEditFromPointer( ... ) RETURN HB_QPlainTextEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPolygon.prg b/harbour/contrib/hbqt/qtgui/g/TQPolygon.prg index 89aea36654..2a69fccb3d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPolygon.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPolygon.prg @@ -98,9 +98,6 @@ FUNCTION QPolygon( ... ) RETURN HB_QPolygon():new( ... ) -FUNCTION QPolygonFrom( ... ) - RETURN HB_QPolygon():from( ... ) - FUNCTION QPolygonFromPointer( ... ) RETURN HB_QPolygon():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPolygonF.prg b/harbour/contrib/hbqt/qtgui/g/TQPolygonF.prg index c4cd4353c9..c8447d6662 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPolygonF.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPolygonF.prg @@ -98,9 +98,6 @@ FUNCTION QPolygonF( ... ) RETURN HB_QPolygonF():new( ... ) -FUNCTION QPolygonFFrom( ... ) - RETURN HB_QPolygonF():from( ... ) - FUNCTION QPolygonFFromPointer( ... ) RETURN HB_QPolygonF():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPrintDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQPrintDialog.prg index 01f122da49..027d186758 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPrintDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPrintDialog.prg @@ -98,9 +98,6 @@ FUNCTION QPrintDialog( ... ) RETURN HB_QPrintDialog():new( ... ) -FUNCTION QPrintDialogFrom( ... ) - RETURN HB_QPrintDialog():from( ... ) - FUNCTION QPrintDialogFromPointer( ... ) RETURN HB_QPrintDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPrintEngine.prg b/harbour/contrib/hbqt/qtgui/g/TQPrintEngine.prg index 7b7d82c3da..029d5de998 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPrintEngine.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPrintEngine.prg @@ -98,9 +98,6 @@ FUNCTION QPrintEngine( ... ) RETURN HB_QPrintEngine():new( ... ) -FUNCTION QPrintEngineFrom( ... ) - RETURN HB_QPrintEngine():from( ... ) - FUNCTION QPrintEngineFromPointer( ... ) RETURN HB_QPrintEngine():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPrintPreviewDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQPrintPreviewDialog.prg index 0dad1e3847..9becfda1a9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPrintPreviewDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPrintPreviewDialog.prg @@ -98,9 +98,6 @@ FUNCTION QPrintPreviewDialog( ... ) RETURN HB_QPrintPreviewDialog():new( ... ) -FUNCTION QPrintPreviewDialogFrom( ... ) - RETURN HB_QPrintPreviewDialog():from( ... ) - FUNCTION QPrintPreviewDialogFromPointer( ... ) RETURN HB_QPrintPreviewDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPrinter.prg b/harbour/contrib/hbqt/qtgui/g/TQPrinter.prg index c5e599745f..ab5f00d2b5 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPrinter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPrinter.prg @@ -98,9 +98,6 @@ FUNCTION QPrinter( ... ) RETURN HB_QPrinter():new( ... ) -FUNCTION QPrinterFrom( ... ) - RETURN HB_QPrinter():from( ... ) - FUNCTION QPrinterFromPointer( ... ) RETURN HB_QPrinter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPrinterInfo.prg b/harbour/contrib/hbqt/qtgui/g/TQPrinterInfo.prg index 7260f2a720..9c57286a61 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPrinterInfo.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPrinterInfo.prg @@ -98,9 +98,6 @@ FUNCTION QPrinterInfo( ... ) RETURN HB_QPrinterInfo():new( ... ) -FUNCTION QPrinterInfoFrom( ... ) - RETURN HB_QPrinterInfo():from( ... ) - FUNCTION QPrinterInfoFromPointer( ... ) RETURN HB_QPrinterInfo():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQProgressBar.prg b/harbour/contrib/hbqt/qtgui/g/TQProgressBar.prg index 651f65738e..8e9efb6f46 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQProgressBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQProgressBar.prg @@ -98,9 +98,6 @@ FUNCTION QProgressBar( ... ) RETURN HB_QProgressBar():new( ... ) -FUNCTION QProgressBarFrom( ... ) - RETURN HB_QProgressBar():from( ... ) - FUNCTION QProgressBarFromPointer( ... ) RETURN HB_QProgressBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQProgressDialog.prg b/harbour/contrib/hbqt/qtgui/g/TQProgressDialog.prg index 64fa0102d3..778239ebe3 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQProgressDialog.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQProgressDialog.prg @@ -98,9 +98,6 @@ FUNCTION QProgressDialog( ... ) RETURN HB_QProgressDialog():new( ... ) -FUNCTION QProgressDialogFrom( ... ) - RETURN HB_QProgressDialog():from( ... ) - FUNCTION QProgressDialogFromPointer( ... ) RETURN HB_QProgressDialog():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQPushButton.prg b/harbour/contrib/hbqt/qtgui/g/TQPushButton.prg index a673984872..6120d0bb5b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQPushButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQPushButton.prg @@ -98,9 +98,6 @@ FUNCTION QPushButton( ... ) RETURN HB_QPushButton():new( ... ) -FUNCTION QPushButtonFrom( ... ) - RETURN HB_QPushButton():from( ... ) - FUNCTION QPushButtonFromPointer( ... ) RETURN HB_QPushButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQRadialGradient.prg b/harbour/contrib/hbqt/qtgui/g/TQRadialGradient.prg index 30bd68de69..977a6cff69 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQRadialGradient.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQRadialGradient.prg @@ -98,9 +98,6 @@ FUNCTION QRadialGradient( ... ) RETURN HB_QRadialGradient():new( ... ) -FUNCTION QRadialGradientFrom( ... ) - RETURN HB_QRadialGradient():from( ... ) - FUNCTION QRadialGradientFromPointer( ... ) RETURN HB_QRadialGradient():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQRadioButton.prg b/harbour/contrib/hbqt/qtgui/g/TQRadioButton.prg index 23d3b95a75..a591827908 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQRadioButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQRadioButton.prg @@ -98,9 +98,6 @@ FUNCTION QRadioButton( ... ) RETURN HB_QRadioButton():new( ... ) -FUNCTION QRadioButtonFrom( ... ) - RETURN HB_QRadioButton():from( ... ) - FUNCTION QRadioButtonFromPointer( ... ) RETURN HB_QRadioButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQRegExpValidator.prg b/harbour/contrib/hbqt/qtgui/g/TQRegExpValidator.prg index 35cc42c0e0..d874ff2f03 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQRegExpValidator.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQRegExpValidator.prg @@ -98,9 +98,6 @@ FUNCTION QRegExpValidator( ... ) RETURN HB_QRegExpValidator():new( ... ) -FUNCTION QRegExpValidatorFrom( ... ) - RETURN HB_QRegExpValidator():from( ... ) - FUNCTION QRegExpValidatorFromPointer( ... ) RETURN HB_QRegExpValidator():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQRegion.prg b/harbour/contrib/hbqt/qtgui/g/TQRegion.prg index 2897dfda72..33af23ef63 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQRegion.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQRegion.prg @@ -98,9 +98,6 @@ FUNCTION QRegion( ... ) RETURN HB_QRegion():new( ... ) -FUNCTION QRegionFrom( ... ) - RETURN HB_QRegion():from( ... ) - FUNCTION QRegionFromPointer( ... ) RETURN HB_QRegion():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQResizeEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQResizeEvent.prg index 551d3280fc..51053d6d21 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQResizeEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQResizeEvent.prg @@ -98,9 +98,6 @@ FUNCTION QResizeEvent( ... ) RETURN HB_QResizeEvent():new( ... ) -FUNCTION QResizeEventFrom( ... ) - RETURN HB_QResizeEvent():from( ... ) - FUNCTION QResizeEventFromPointer( ... ) RETURN HB_QResizeEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQScrollArea.prg b/harbour/contrib/hbqt/qtgui/g/TQScrollArea.prg index f90defafd1..1163a92f08 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQScrollArea.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQScrollArea.prg @@ -98,9 +98,6 @@ FUNCTION QScrollArea( ... ) RETURN HB_QScrollArea():new( ... ) -FUNCTION QScrollAreaFrom( ... ) - RETURN HB_QScrollArea():from( ... ) - FUNCTION QScrollAreaFromPointer( ... ) RETURN HB_QScrollArea():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQScrollBar.prg b/harbour/contrib/hbqt/qtgui/g/TQScrollBar.prg index c202f4d577..bee8e3f630 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQScrollBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQScrollBar.prg @@ -98,9 +98,6 @@ FUNCTION QScrollBar( ... ) RETURN HB_QScrollBar():new( ... ) -FUNCTION QScrollBarFrom( ... ) - RETURN HB_QScrollBar():from( ... ) - FUNCTION QScrollBarFromPointer( ... ) RETURN HB_QScrollBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSessionManager.prg b/harbour/contrib/hbqt/qtgui/g/TQSessionManager.prg index dc966dcea5..1d6a70c7c6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSessionManager.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSessionManager.prg @@ -98,9 +98,6 @@ FUNCTION QSessionManager( ... ) RETURN HB_QSessionManager():new( ... ) -FUNCTION QSessionManagerFrom( ... ) - RETURN HB_QSessionManager():from( ... ) - FUNCTION QSessionManagerFromPointer( ... ) RETURN HB_QSessionManager():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQShowEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQShowEvent.prg index a5e861ab8d..bfa2ac6e37 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQShowEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQShowEvent.prg @@ -98,9 +98,6 @@ FUNCTION QShowEvent( ... ) RETURN HB_QShowEvent():new( ... ) -FUNCTION QShowEventFrom( ... ) - RETURN HB_QShowEvent():from( ... ) - FUNCTION QShowEventFromPointer( ... ) RETURN HB_QShowEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSizeGrip.prg b/harbour/contrib/hbqt/qtgui/g/TQSizeGrip.prg index 3526e23073..726f439b7e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSizeGrip.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSizeGrip.prg @@ -98,9 +98,6 @@ FUNCTION QSizeGrip( ... ) RETURN HB_QSizeGrip():new( ... ) -FUNCTION QSizeGripFrom( ... ) - RETURN HB_QSizeGrip():from( ... ) - FUNCTION QSizeGripFromPointer( ... ) RETURN HB_QSizeGrip():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSizePolicy.prg b/harbour/contrib/hbqt/qtgui/g/TQSizePolicy.prg index 885d7f0458..8ba63876f7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSizePolicy.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSizePolicy.prg @@ -98,9 +98,6 @@ FUNCTION QSizePolicy( ... ) RETURN HB_QSizePolicy():new( ... ) -FUNCTION QSizePolicyFrom( ... ) - RETURN HB_QSizePolicy():from( ... ) - FUNCTION QSizePolicyFromPointer( ... ) RETURN HB_QSizePolicy():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSlider.prg b/harbour/contrib/hbqt/qtgui/g/TQSlider.prg index 7e704d091f..fe182fbd12 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSlider.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSlider.prg @@ -98,9 +98,6 @@ FUNCTION QSlider( ... ) RETURN HB_QSlider():new( ... ) -FUNCTION QSliderFrom( ... ) - RETURN HB_QSlider():from( ... ) - FUNCTION QSliderFromPointer( ... ) RETURN HB_QSlider():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSortFilterProxyModel.prg b/harbour/contrib/hbqt/qtgui/g/TQSortFilterProxyModel.prg index 84f8a39422..8fb846dea6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSortFilterProxyModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSortFilterProxyModel.prg @@ -98,9 +98,6 @@ FUNCTION QSortFilterProxyModel( ... ) RETURN HB_QSortFilterProxyModel():new( ... ) -FUNCTION QSortFilterProxyModelFrom( ... ) - RETURN HB_QSortFilterProxyModel():from( ... ) - FUNCTION QSortFilterProxyModelFromPointer( ... ) RETURN HB_QSortFilterProxyModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSound.prg b/harbour/contrib/hbqt/qtgui/g/TQSound.prg index 63d9323ba7..0d40e578c9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSound.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSound.prg @@ -98,9 +98,6 @@ FUNCTION QSound( ... ) RETURN HB_QSound():new( ... ) -FUNCTION QSoundFrom( ... ) - RETURN HB_QSound():from( ... ) - FUNCTION QSoundFromPointer( ... ) RETURN HB_QSound():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSpacerItem.prg b/harbour/contrib/hbqt/qtgui/g/TQSpacerItem.prg index 8078af35b8..c316f47119 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSpacerItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSpacerItem.prg @@ -98,9 +98,6 @@ FUNCTION QSpacerItem( ... ) RETURN HB_QSpacerItem():new( ... ) -FUNCTION QSpacerItemFrom( ... ) - RETURN HB_QSpacerItem():from( ... ) - FUNCTION QSpacerItemFromPointer( ... ) RETURN HB_QSpacerItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSpinBox.prg b/harbour/contrib/hbqt/qtgui/g/TQSpinBox.prg index d7f42d1762..efab8ed230 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSpinBox.prg @@ -98,9 +98,6 @@ FUNCTION QSpinBox( ... ) RETURN HB_QSpinBox():new( ... ) -FUNCTION QSpinBoxFrom( ... ) - RETURN HB_QSpinBox():from( ... ) - FUNCTION QSpinBoxFromPointer( ... ) RETURN HB_QSpinBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSplashScreen.prg b/harbour/contrib/hbqt/qtgui/g/TQSplashScreen.prg index 8f6063bb2d..7a0120d7e6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSplashScreen.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSplashScreen.prg @@ -98,9 +98,6 @@ FUNCTION QSplashScreen( ... ) RETURN HB_QSplashScreen():new( ... ) -FUNCTION QSplashScreenFrom( ... ) - RETURN HB_QSplashScreen():from( ... ) - FUNCTION QSplashScreenFromPointer( ... ) RETURN HB_QSplashScreen():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSplitter.prg b/harbour/contrib/hbqt/qtgui/g/TQSplitter.prg index 5816e04bcd..ac1dfd15e1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSplitter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSplitter.prg @@ -98,9 +98,6 @@ FUNCTION QSplitter( ... ) RETURN HB_QSplitter():new( ... ) -FUNCTION QSplitterFrom( ... ) - RETURN HB_QSplitter():from( ... ) - FUNCTION QSplitterFromPointer( ... ) RETURN HB_QSplitter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStackedWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQStackedWidget.prg index 0657c0a440..22a85e01ac 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStackedWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStackedWidget.prg @@ -98,9 +98,6 @@ FUNCTION QStackedWidget( ... ) RETURN HB_QStackedWidget():new( ... ) -FUNCTION QStackedWidgetFrom( ... ) - RETURN HB_QStackedWidget():from( ... ) - FUNCTION QStackedWidgetFromPointer( ... ) RETURN HB_QStackedWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStandardItem.prg b/harbour/contrib/hbqt/qtgui/g/TQStandardItem.prg index 49ba9555a7..eae42556cd 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStandardItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStandardItem.prg @@ -98,9 +98,6 @@ FUNCTION QStandardItem( ... ) RETURN HB_QStandardItem():new( ... ) -FUNCTION QStandardItemFrom( ... ) - RETURN HB_QStandardItem():from( ... ) - FUNCTION QStandardItemFromPointer( ... ) RETURN HB_QStandardItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStandardItemModel.prg b/harbour/contrib/hbqt/qtgui/g/TQStandardItemModel.prg index 3a87182f9b..bd7dd7df5e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStandardItemModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStandardItemModel.prg @@ -98,9 +98,6 @@ FUNCTION QStandardItemModel( ... ) RETURN HB_QStandardItemModel():new( ... ) -FUNCTION QStandardItemModelFrom( ... ) - RETURN HB_QStandardItemModel():from( ... ) - FUNCTION QStandardItemModelFromPointer( ... ) RETURN HB_QStandardItemModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStatusBar.prg b/harbour/contrib/hbqt/qtgui/g/TQStatusBar.prg index 6661c7139b..f3714ed9f5 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStatusBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStatusBar.prg @@ -98,9 +98,6 @@ FUNCTION QStatusBar( ... ) RETURN HB_QStatusBar():new( ... ) -FUNCTION QStatusBarFrom( ... ) - RETURN HB_QStatusBar():from( ... ) - FUNCTION QStatusBarFromPointer( ... ) RETURN HB_QStatusBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStringListModel.prg b/harbour/contrib/hbqt/qtgui/g/TQStringListModel.prg index ac18ff9c77..5abad03439 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStringListModel.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStringListModel.prg @@ -98,9 +98,6 @@ FUNCTION QStringListModel( ... ) RETURN HB_QStringListModel():new( ... ) -FUNCTION QStringListModelFrom( ... ) - RETURN HB_QStringListModel():from( ... ) - FUNCTION QStringListModelFromPointer( ... ) RETURN HB_QStringListModel():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyle.prg b/harbour/contrib/hbqt/qtgui/g/TQStyle.prg index 38c2e06162..a3cd3488db 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyle.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyle.prg @@ -98,9 +98,6 @@ FUNCTION QStyle( ... ) RETURN HB_QStyle():new( ... ) -FUNCTION QStyleFrom( ... ) - RETURN HB_QStyle():from( ... ) - FUNCTION QStyleFromPointer( ... ) RETURN HB_QStyle():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleFactory.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleFactory.prg index db04a96e06..f69c54d4af 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleFactory.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleFactory.prg @@ -98,9 +98,6 @@ FUNCTION QStyleFactory( ... ) RETURN HB_QStyleFactory():new( ... ) -FUNCTION QStyleFactoryFrom( ... ) - RETURN HB_QStyleFactory():from( ... ) - FUNCTION QStyleFactoryFromPointer( ... ) RETURN HB_QStyleFactory():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturn.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturn.prg index 40406ce65b..b09ee7270f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturn.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturn.prg @@ -98,9 +98,6 @@ FUNCTION QStyleHintReturn( ... ) RETURN HB_QStyleHintReturn():new( ... ) -FUNCTION QStyleHintReturnFrom( ... ) - RETURN HB_QStyleHintReturn():from( ... ) - FUNCTION QStyleHintReturnFromPointer( ... ) RETURN HB_QStyleHintReturn():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnMask.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnMask.prg index cd11a0a626..5d9d1883b6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnMask.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnMask.prg @@ -98,9 +98,6 @@ FUNCTION QStyleHintReturnMask( ... ) RETURN HB_QStyleHintReturnMask():new( ... ) -FUNCTION QStyleHintReturnMaskFrom( ... ) - RETURN HB_QStyleHintReturnMask():from( ... ) - FUNCTION QStyleHintReturnMaskFromPointer( ... ) RETURN HB_QStyleHintReturnMask():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnVariant.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnVariant.prg index a693f580ef..cabc7ec11a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnVariant.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleHintReturnVariant.prg @@ -98,9 +98,6 @@ FUNCTION QStyleHintReturnVariant( ... ) RETURN HB_QStyleHintReturnVariant():new( ... ) -FUNCTION QStyleHintReturnVariantFrom( ... ) - RETURN HB_QStyleHintReturnVariant():from( ... ) - FUNCTION QStyleHintReturnVariantFromPointer( ... ) RETURN HB_QStyleHintReturnVariant():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOption.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOption.prg index c3e1aa674f..4ae6d1d27c 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOption.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOption.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOption( ... ) RETURN HB_QStyleOption():new( ... ) -FUNCTION QStyleOptionFrom( ... ) - RETURN HB_QStyleOption():from( ... ) - FUNCTION QStyleOptionFromPointer( ... ) RETURN HB_QStyleOption():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionButton.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionButton.prg index e6ffa01f62..965e7c28a8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionButton.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionButton( ... ) RETURN HB_QStyleOptionButton():new( ... ) -FUNCTION QStyleOptionButtonFrom( ... ) - RETURN HB_QStyleOptionButton():from( ... ) - FUNCTION QStyleOptionButtonFromPointer( ... ) RETURN HB_QStyleOptionButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComboBox.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComboBox.prg index 3ba6d5f04d..bd383dfed6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComboBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComboBox.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionComboBox( ... ) RETURN HB_QStyleOptionComboBox():new( ... ) -FUNCTION QStyleOptionComboBoxFrom( ... ) - RETURN HB_QStyleOptionComboBox():from( ... ) - FUNCTION QStyleOptionComboBoxFromPointer( ... ) RETURN HB_QStyleOptionComboBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComplex.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComplex.prg index 75db7667b8..01343d9b6f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComplex.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionComplex.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionComplex( ... ) RETURN HB_QStyleOptionComplex():new( ... ) -FUNCTION QStyleOptionComplexFrom( ... ) - RETURN HB_QStyleOptionComplex():from( ... ) - FUNCTION QStyleOptionComplexFromPointer( ... ) RETURN HB_QStyleOptionComplex():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionDockWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionDockWidget.prg index 82e8a1d4ff..9473ec16cb 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionDockWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionDockWidget.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionDockWidget( ... ) RETURN HB_QStyleOptionDockWidget():new( ... ) -FUNCTION QStyleOptionDockWidgetFrom( ... ) - RETURN HB_QStyleOptionDockWidget():from( ... ) - FUNCTION QStyleOptionDockWidgetFromPointer( ... ) RETURN HB_QStyleOptionDockWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFocusRect.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFocusRect.prg index 597c90594f..fcecaf5259 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFocusRect.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFocusRect.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionFocusRect( ... ) RETURN HB_QStyleOptionFocusRect():new( ... ) -FUNCTION QStyleOptionFocusRectFrom( ... ) - RETURN HB_QStyleOptionFocusRect():from( ... ) - FUNCTION QStyleOptionFocusRectFromPointer( ... ) RETURN HB_QStyleOptionFocusRect():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFrame.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFrame.prg index 336872bab8..ecde05e3e3 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFrame.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionFrame.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionFrame( ... ) RETURN HB_QStyleOptionFrame():new( ... ) -FUNCTION QStyleOptionFrameFrom( ... ) - RETURN HB_QStyleOptionFrame():from( ... ) - FUNCTION QStyleOptionFrameFromPointer( ... ) RETURN HB_QStyleOptionFrame():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGraphicsItem.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGraphicsItem.prg index 83b18a26d6..ac8129e0be 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGraphicsItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGraphicsItem.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionGraphicsItem( ... ) RETURN HB_QStyleOptionGraphicsItem():new( ... ) -FUNCTION QStyleOptionGraphicsItemFrom( ... ) - RETURN HB_QStyleOptionGraphicsItem():from( ... ) - FUNCTION QStyleOptionGraphicsItemFromPointer( ... ) RETURN HB_QStyleOptionGraphicsItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGroupBox.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGroupBox.prg index 4bd084289b..b8e59f8a84 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGroupBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionGroupBox.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionGroupBox( ... ) RETURN HB_QStyleOptionGroupBox():new( ... ) -FUNCTION QStyleOptionGroupBoxFrom( ... ) - RETURN HB_QStyleOptionGroupBox():from( ... ) - FUNCTION QStyleOptionGroupBoxFromPointer( ... ) RETURN HB_QStyleOptionGroupBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionHeader.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionHeader.prg index bc1ce40646..4eb4778c25 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionHeader.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionHeader.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionHeader( ... ) RETURN HB_QStyleOptionHeader():new( ... ) -FUNCTION QStyleOptionHeaderFrom( ... ) - RETURN HB_QStyleOptionHeader():from( ... ) - FUNCTION QStyleOptionHeaderFromPointer( ... ) RETURN HB_QStyleOptionHeader():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionMenuItem.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionMenuItem.prg index 765826ce05..d9ee6ec5a7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionMenuItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionMenuItem.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionMenuItem( ... ) RETURN HB_QStyleOptionMenuItem():new( ... ) -FUNCTION QStyleOptionMenuItemFrom( ... ) - RETURN HB_QStyleOptionMenuItem():from( ... ) - FUNCTION QStyleOptionMenuItemFromPointer( ... ) RETURN HB_QStyleOptionMenuItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionProgressBar.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionProgressBar.prg index 223ec81c88..bee7a7b6ef 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionProgressBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionProgressBar.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionProgressBar( ... ) RETURN HB_QStyleOptionProgressBar():new( ... ) -FUNCTION QStyleOptionProgressBarFrom( ... ) - RETURN HB_QStyleOptionProgressBar():from( ... ) - FUNCTION QStyleOptionProgressBarFromPointer( ... ) RETURN HB_QStyleOptionProgressBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSizeGrip.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSizeGrip.prg index 5aa2eeb0a7..dc0725e7a4 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSizeGrip.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSizeGrip.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionSizeGrip( ... ) RETURN HB_QStyleOptionSizeGrip():new( ... ) -FUNCTION QStyleOptionSizeGripFrom( ... ) - RETURN HB_QStyleOptionSizeGrip():from( ... ) - FUNCTION QStyleOptionSizeGripFromPointer( ... ) RETURN HB_QStyleOptionSizeGrip():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSlider.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSlider.prg index 87b27989fc..1934421a99 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSlider.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSlider.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionSlider( ... ) RETURN HB_QStyleOptionSlider():new( ... ) -FUNCTION QStyleOptionSliderFrom( ... ) - RETURN HB_QStyleOptionSlider():from( ... ) - FUNCTION QStyleOptionSliderFromPointer( ... ) RETURN HB_QStyleOptionSlider():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSpinBox.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSpinBox.prg index a5dfcffa12..6fd56362ad 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSpinBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionSpinBox.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionSpinBox( ... ) RETURN HB_QStyleOptionSpinBox():new( ... ) -FUNCTION QStyleOptionSpinBoxFrom( ... ) - RETURN HB_QStyleOptionSpinBox():from( ... ) - FUNCTION QStyleOptionSpinBoxFromPointer( ... ) RETURN HB_QStyleOptionSpinBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTab.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTab.prg index d0e9f4422f..73b2533754 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTab.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTab.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionTab( ... ) RETURN HB_QStyleOptionTab():new( ... ) -FUNCTION QStyleOptionTabFrom( ... ) - RETURN HB_QStyleOptionTab():from( ... ) - FUNCTION QStyleOptionTabFromPointer( ... ) RETURN HB_QStyleOptionTab():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabBarBase.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabBarBase.prg index f1400a30cb..aa4887454d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabBarBase.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabBarBase.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionTabBarBase( ... ) RETURN HB_QStyleOptionTabBarBase():new( ... ) -FUNCTION QStyleOptionTabBarBaseFrom( ... ) - RETURN HB_QStyleOptionTabBarBase():from( ... ) - FUNCTION QStyleOptionTabBarBaseFromPointer( ... ) RETURN HB_QStyleOptionTabBarBase():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabWidgetFrame.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabWidgetFrame.prg index 066e17f316..f95b212ba5 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabWidgetFrame.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTabWidgetFrame.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionTabWidgetFrame( ... ) RETURN HB_QStyleOptionTabWidgetFrame():new( ... ) -FUNCTION QStyleOptionTabWidgetFrameFrom( ... ) - RETURN HB_QStyleOptionTabWidgetFrame():from( ... ) - FUNCTION QStyleOptionTabWidgetFrameFromPointer( ... ) RETURN HB_QStyleOptionTabWidgetFrame():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTitleBar.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTitleBar.prg index 2fb124b6ef..0fb38ad7e7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTitleBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionTitleBar.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionTitleBar( ... ) RETURN HB_QStyleOptionTitleBar():new( ... ) -FUNCTION QStyleOptionTitleBarFrom( ... ) - RETURN HB_QStyleOptionTitleBar():from( ... ) - FUNCTION QStyleOptionTitleBarFromPointer( ... ) RETURN HB_QStyleOptionTitleBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBar.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBar.prg index 3538d1f4ce..8f49c58495 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBar.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionToolBar( ... ) RETURN HB_QStyleOptionToolBar():new( ... ) -FUNCTION QStyleOptionToolBarFrom( ... ) - RETURN HB_QStyleOptionToolBar():from( ... ) - FUNCTION QStyleOptionToolBarFromPointer( ... ) RETURN HB_QStyleOptionToolBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBox.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBox.prg index 8a08a5d3a9..e93fa53d32 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolBox.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionToolBox( ... ) RETURN HB_QStyleOptionToolBox():new( ... ) -FUNCTION QStyleOptionToolBoxFrom( ... ) - RETURN HB_QStyleOptionToolBox():from( ... ) - FUNCTION QStyleOptionToolBoxFromPointer( ... ) RETURN HB_QStyleOptionToolBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolButton.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolButton.prg index 9b40b97f16..b63e800166 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionToolButton.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionToolButton( ... ) RETURN HB_QStyleOptionToolButton():new( ... ) -FUNCTION QStyleOptionToolButtonFrom( ... ) - RETURN HB_QStyleOptionToolButton():from( ... ) - FUNCTION QStyleOptionToolButtonFromPointer( ... ) RETURN HB_QStyleOptionToolButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionViewItem.prg b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionViewItem.prg index 0ac8bccd6e..13d1d48429 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyleOptionViewItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyleOptionViewItem.prg @@ -98,9 +98,6 @@ FUNCTION QStyleOptionViewItem( ... ) RETURN HB_QStyleOptionViewItem():new( ... ) -FUNCTION QStyleOptionViewItemFrom( ... ) - RETURN HB_QStyleOptionViewItem():from( ... ) - FUNCTION QStyleOptionViewItemFromPointer( ... ) RETURN HB_QStyleOptionViewItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStylePainter.prg b/harbour/contrib/hbqt/qtgui/g/TQStylePainter.prg index 141668f2d1..7e072b85b0 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStylePainter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStylePainter.prg @@ -98,9 +98,6 @@ FUNCTION QStylePainter( ... ) RETURN HB_QStylePainter():new( ... ) -FUNCTION QStylePainterFrom( ... ) - RETURN HB_QStylePainter():from( ... ) - FUNCTION QStylePainterFromPointer( ... ) RETURN HB_QStylePainter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQStyledItemDelegate.prg b/harbour/contrib/hbqt/qtgui/g/TQStyledItemDelegate.prg index 2d63898d6b..ec9b9cfaa0 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQStyledItemDelegate.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQStyledItemDelegate.prg @@ -98,9 +98,6 @@ FUNCTION QStyledItemDelegate( ... ) RETURN HB_QStyledItemDelegate():new( ... ) -FUNCTION QStyledItemDelegateFrom( ... ) - RETURN HB_QStyledItemDelegate():from( ... ) - FUNCTION QStyledItemDelegateFromPointer( ... ) RETURN HB_QStyledItemDelegate():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSyntaxHighlighter.prg b/harbour/contrib/hbqt/qtgui/g/TQSyntaxHighlighter.prg index b3d67919b9..32e3563fb1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSyntaxHighlighter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSyntaxHighlighter.prg @@ -98,9 +98,6 @@ FUNCTION QSyntaxHighlighter( ... ) RETURN HB_QSyntaxHighlighter():new( ... ) -FUNCTION QSyntaxHighlighterFrom( ... ) - RETURN HB_QSyntaxHighlighter():from( ... ) - FUNCTION QSyntaxHighlighterFromPointer( ... ) RETURN HB_QSyntaxHighlighter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQSystemTrayIcon.prg b/harbour/contrib/hbqt/qtgui/g/TQSystemTrayIcon.prg index 029e5c4e3c..fcfd77085f 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQSystemTrayIcon.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQSystemTrayIcon.prg @@ -98,9 +98,6 @@ FUNCTION QSystemTrayIcon( ... ) RETURN HB_QSystemTrayIcon():new( ... ) -FUNCTION QSystemTrayIconFrom( ... ) - RETURN HB_QSystemTrayIcon():from( ... ) - FUNCTION QSystemTrayIconFromPointer( ... ) RETURN HB_QSystemTrayIcon():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTabBar.prg b/harbour/contrib/hbqt/qtgui/g/TQTabBar.prg index dab095de4a..64fc7e45db 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTabBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTabBar.prg @@ -98,9 +98,6 @@ FUNCTION QTabBar( ... ) RETURN HB_QTabBar():new( ... ) -FUNCTION QTabBarFrom( ... ) - RETURN HB_QTabBar():from( ... ) - FUNCTION QTabBarFromPointer( ... ) RETURN HB_QTabBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTabWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQTabWidget.prg index 82535dc123..6570ada90e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTabWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTabWidget.prg @@ -98,9 +98,6 @@ FUNCTION QTabWidget( ... ) RETURN HB_QTabWidget():new( ... ) -FUNCTION QTabWidgetFrom( ... ) - RETURN HB_QTabWidget():from( ... ) - FUNCTION QTabWidgetFromPointer( ... ) RETURN HB_QTabWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTableView.prg b/harbour/contrib/hbqt/qtgui/g/TQTableView.prg index db1fc6beb0..f7128696c7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTableView.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTableView.prg @@ -98,9 +98,6 @@ FUNCTION QTableView( ... ) RETURN HB_QTableView():new( ... ) -FUNCTION QTableViewFrom( ... ) - RETURN HB_QTableView():from( ... ) - FUNCTION QTableViewFromPointer( ... ) RETURN HB_QTableView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTableWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQTableWidget.prg index 73430d7e4b..80f65aaad6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTableWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTableWidget.prg @@ -98,9 +98,6 @@ FUNCTION QTableWidget( ... ) RETURN HB_QTableWidget():new( ... ) -FUNCTION QTableWidgetFrom( ... ) - RETURN HB_QTableWidget():from( ... ) - FUNCTION QTableWidgetFromPointer( ... ) RETURN HB_QTableWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTableWidgetItem.prg b/harbour/contrib/hbqt/qtgui/g/TQTableWidgetItem.prg index 9247ba0e37..8d894df5f7 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTableWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTableWidgetItem.prg @@ -98,9 +98,6 @@ FUNCTION QTableWidgetItem( ... ) RETURN HB_QTableWidgetItem():new( ... ) -FUNCTION QTableWidgetItemFrom( ... ) - RETURN HB_QTableWidgetItem():from( ... ) - FUNCTION QTableWidgetItemFromPointer( ... ) RETURN HB_QTableWidgetItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTableWidgetSelectionRange.prg b/harbour/contrib/hbqt/qtgui/g/TQTableWidgetSelectionRange.prg index 40de68f0d0..91e10f07c1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTableWidgetSelectionRange.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTableWidgetSelectionRange.prg @@ -98,9 +98,6 @@ FUNCTION QTableWidgetSelectionRange( ... ) RETURN HB_QTableWidgetSelectionRange():new( ... ) -FUNCTION QTableWidgetSelectionRangeFrom( ... ) - RETURN HB_QTableWidgetSelectionRange():from( ... ) - FUNCTION QTableWidgetSelectionRangeFromPointer( ... ) RETURN HB_QTableWidgetSelectionRange():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextBlock.prg b/harbour/contrib/hbqt/qtgui/g/TQTextBlock.prg index a319d67f01..02c82a998d 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextBlock.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextBlock.prg @@ -98,9 +98,6 @@ FUNCTION QTextBlock( ... ) RETURN HB_QTextBlock():new( ... ) -FUNCTION QTextBlockFrom( ... ) - RETURN HB_QTextBlock():from( ... ) - FUNCTION QTextBlockFromPointer( ... ) RETURN HB_QTextBlock():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextBlockFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextBlockFormat.prg index 5707d6a901..185bb94022 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextBlockFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextBlockFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextBlockFormat( ... ) RETURN HB_QTextBlockFormat():new( ... ) -FUNCTION QTextBlockFormatFrom( ... ) - RETURN HB_QTextBlockFormat():from( ... ) - FUNCTION QTextBlockFormatFromPointer( ... ) RETURN HB_QTextBlockFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextBlockGroup.prg b/harbour/contrib/hbqt/qtgui/g/TQTextBlockGroup.prg index e57d12e300..7072ddc1a1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextBlockGroup.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextBlockGroup.prg @@ -98,9 +98,6 @@ FUNCTION QTextBlockGroup( ... ) RETURN HB_QTextBlockGroup():new( ... ) -FUNCTION QTextBlockGroupFrom( ... ) - RETURN HB_QTextBlockGroup():from( ... ) - FUNCTION QTextBlockGroupFromPointer( ... ) RETURN HB_QTextBlockGroup():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextBrowser.prg b/harbour/contrib/hbqt/qtgui/g/TQTextBrowser.prg index f925920efa..fa8f631fab 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextBrowser.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextBrowser.prg @@ -98,9 +98,6 @@ FUNCTION QTextBrowser( ... ) RETURN HB_QTextBrowser():new( ... ) -FUNCTION QTextBrowserFrom( ... ) - RETURN HB_QTextBrowser():from( ... ) - FUNCTION QTextBrowserFromPointer( ... ) RETURN HB_QTextBrowser():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextCharFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextCharFormat.prg index 351a7e4260..aa143afb93 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextCharFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextCharFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextCharFormat( ... ) RETURN HB_QTextCharFormat():new( ... ) -FUNCTION QTextCharFormatFrom( ... ) - RETURN HB_QTextCharFormat():from( ... ) - FUNCTION QTextCharFormatFromPointer( ... ) RETURN HB_QTextCharFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextCursor.prg b/harbour/contrib/hbqt/qtgui/g/TQTextCursor.prg index b5777379bf..601923c994 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextCursor.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextCursor.prg @@ -98,9 +98,6 @@ FUNCTION QTextCursor( ... ) RETURN HB_QTextCursor():new( ... ) -FUNCTION QTextCursorFrom( ... ) - RETURN HB_QTextCursor():from( ... ) - FUNCTION QTextCursorFromPointer( ... ) RETURN HB_QTextCursor():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextDocument.prg b/harbour/contrib/hbqt/qtgui/g/TQTextDocument.prg index 53f875630f..613fefa734 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextDocument.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextDocument.prg @@ -98,9 +98,6 @@ FUNCTION QTextDocument( ... ) RETURN HB_QTextDocument():new( ... ) -FUNCTION QTextDocumentFrom( ... ) - RETURN HB_QTextDocument():from( ... ) - FUNCTION QTextDocumentFromPointer( ... ) RETURN HB_QTextDocument():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextDocumentFragment.prg b/harbour/contrib/hbqt/qtgui/g/TQTextDocumentFragment.prg index 0a93edd196..25fdd9d2e1 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextDocumentFragment.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextDocumentFragment.prg @@ -98,9 +98,6 @@ FUNCTION QTextDocumentFragment( ... ) RETURN HB_QTextDocumentFragment():new( ... ) -FUNCTION QTextDocumentFragmentFrom( ... ) - RETURN HB_QTextDocumentFragment():from( ... ) - FUNCTION QTextDocumentFragmentFromPointer( ... ) RETURN HB_QTextDocumentFragment():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextDocumentWriter.prg b/harbour/contrib/hbqt/qtgui/g/TQTextDocumentWriter.prg index 013e6880d5..1a0c310840 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextDocumentWriter.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextDocumentWriter.prg @@ -98,9 +98,6 @@ FUNCTION QTextDocumentWriter( ... ) RETURN HB_QTextDocumentWriter():new( ... ) -FUNCTION QTextDocumentWriterFrom( ... ) - RETURN HB_QTextDocumentWriter():from( ... ) - FUNCTION QTextDocumentWriterFromPointer( ... ) RETURN HB_QTextDocumentWriter():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextEdit.prg b/harbour/contrib/hbqt/qtgui/g/TQTextEdit.prg index fb1048be81..6c1ccb15db 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextEdit.prg @@ -98,9 +98,6 @@ FUNCTION QTextEdit( ... ) RETURN HB_QTextEdit():new( ... ) -FUNCTION QTextEditFrom( ... ) - RETURN HB_QTextEdit():from( ... ) - FUNCTION QTextEditFromPointer( ... ) RETURN HB_QTextEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextFormat.prg index feed409517..7bb90e3ed8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextFormat( ... ) RETURN HB_QTextFormat():new( ... ) -FUNCTION QTextFormatFrom( ... ) - RETURN HB_QTextFormat():from( ... ) - FUNCTION QTextFormatFromPointer( ... ) RETURN HB_QTextFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextFragment.prg b/harbour/contrib/hbqt/qtgui/g/TQTextFragment.prg index ba23538976..17e37ccdf2 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextFragment.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextFragment.prg @@ -98,9 +98,6 @@ FUNCTION QTextFragment( ... ) RETURN HB_QTextFragment():new( ... ) -FUNCTION QTextFragmentFrom( ... ) - RETURN HB_QTextFragment():from( ... ) - FUNCTION QTextFragmentFromPointer( ... ) RETURN HB_QTextFragment():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextFrame.prg b/harbour/contrib/hbqt/qtgui/g/TQTextFrame.prg index 50ea620ffb..50ded8b0b2 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextFrame.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextFrame.prg @@ -98,9 +98,6 @@ FUNCTION QTextFrame( ... ) RETURN HB_QTextFrame():new( ... ) -FUNCTION QTextFrameFrom( ... ) - RETURN HB_QTextFrame():from( ... ) - FUNCTION QTextFrameFromPointer( ... ) RETURN HB_QTextFrame():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextFrameFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextFrameFormat.prg index 6719a73924..9ef4dd0ca9 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextFrameFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextFrameFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextFrameFormat( ... ) RETURN HB_QTextFrameFormat():new( ... ) -FUNCTION QTextFrameFormatFrom( ... ) - RETURN HB_QTextFrameFormat():from( ... ) - FUNCTION QTextFrameFormatFromPointer( ... ) RETURN HB_QTextFrameFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextImageFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextImageFormat.prg index cd097dde47..2387933341 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextImageFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextImageFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextImageFormat( ... ) RETURN HB_QTextImageFormat():new( ... ) -FUNCTION QTextImageFormatFrom( ... ) - RETURN HB_QTextImageFormat():from( ... ) - FUNCTION QTextImageFormatFromPointer( ... ) RETURN HB_QTextImageFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextInlineObject.prg b/harbour/contrib/hbqt/qtgui/g/TQTextInlineObject.prg index 4a34edeaee..e3150465b5 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextInlineObject.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextInlineObject.prg @@ -98,9 +98,6 @@ FUNCTION QTextInlineObject( ... ) RETURN HB_QTextInlineObject():new( ... ) -FUNCTION QTextInlineObjectFrom( ... ) - RETURN HB_QTextInlineObject():from( ... ) - FUNCTION QTextInlineObjectFromPointer( ... ) RETURN HB_QTextInlineObject():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextItem.prg b/harbour/contrib/hbqt/qtgui/g/TQTextItem.prg index 004bccec63..ceaf2a16f8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextItem.prg @@ -98,9 +98,6 @@ FUNCTION QTextItem( ... ) RETURN HB_QTextItem():new( ... ) -FUNCTION QTextItemFrom( ... ) - RETURN HB_QTextItem():from( ... ) - FUNCTION QTextItemFromPointer( ... ) RETURN HB_QTextItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQTextLayout.prg index 97b08bafe0..0c363521fd 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextLayout.prg @@ -98,9 +98,6 @@ FUNCTION QTextLayout( ... ) RETURN HB_QTextLayout():new( ... ) -FUNCTION QTextLayoutFrom( ... ) - RETURN HB_QTextLayout():from( ... ) - FUNCTION QTextLayoutFromPointer( ... ) RETURN HB_QTextLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextLength.prg b/harbour/contrib/hbqt/qtgui/g/TQTextLength.prg index de007d157c..9d337f1e8e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextLength.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextLength.prg @@ -98,9 +98,6 @@ FUNCTION QTextLength( ... ) RETURN HB_QTextLength():new( ... ) -FUNCTION QTextLengthFrom( ... ) - RETURN HB_QTextLength():from( ... ) - FUNCTION QTextLengthFromPointer( ... ) RETURN HB_QTextLength():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextLine.prg b/harbour/contrib/hbqt/qtgui/g/TQTextLine.prg index 5b3e285cce..c0ceca870a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextLine.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextLine.prg @@ -98,9 +98,6 @@ FUNCTION QTextLine( ... ) RETURN HB_QTextLine():new( ... ) -FUNCTION QTextLineFrom( ... ) - RETURN HB_QTextLine():from( ... ) - FUNCTION QTextLineFromPointer( ... ) RETURN HB_QTextLine():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextList.prg b/harbour/contrib/hbqt/qtgui/g/TQTextList.prg index 8ba7d603a9..39c1d06312 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextList.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextList.prg @@ -98,9 +98,6 @@ FUNCTION QTextList( ... ) RETURN HB_QTextList():new( ... ) -FUNCTION QTextListFrom( ... ) - RETURN HB_QTextList():from( ... ) - FUNCTION QTextListFromPointer( ... ) RETURN HB_QTextList():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextListFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextListFormat.prg index a05d738342..037f07ee85 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextListFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextListFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextListFormat( ... ) RETURN HB_QTextListFormat():new( ... ) -FUNCTION QTextListFormatFrom( ... ) - RETURN HB_QTextListFormat():from( ... ) - FUNCTION QTextListFormatFromPointer( ... ) RETURN HB_QTextListFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextObject.prg b/harbour/contrib/hbqt/qtgui/g/TQTextObject.prg index fe370f3b56..ee1b9e89d8 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextObject.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextObject.prg @@ -98,9 +98,6 @@ FUNCTION QTextObject( ... ) RETURN HB_QTextObject():new( ... ) -FUNCTION QTextObjectFrom( ... ) - RETURN HB_QTextObject():from( ... ) - FUNCTION QTextObjectFromPointer( ... ) RETURN HB_QTextObject():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextOption.prg b/harbour/contrib/hbqt/qtgui/g/TQTextOption.prg index e8cad6d7e9..37634d5c2b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextOption.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextOption.prg @@ -98,9 +98,6 @@ FUNCTION QTextOption( ... ) RETURN HB_QTextOption():new( ... ) -FUNCTION QTextOptionFrom( ... ) - RETURN HB_QTextOption():from( ... ) - FUNCTION QTextOptionFromPointer( ... ) RETURN HB_QTextOption():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTextTableFormat.prg b/harbour/contrib/hbqt/qtgui/g/TQTextTableFormat.prg index 87b036fb47..a212196734 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTextTableFormat.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTextTableFormat.prg @@ -98,9 +98,6 @@ FUNCTION QTextTableFormat( ... ) RETURN HB_QTextTableFormat():new( ... ) -FUNCTION QTextTableFormatFrom( ... ) - RETURN HB_QTextTableFormat():from( ... ) - FUNCTION QTextTableFormatFromPointer( ... ) RETURN HB_QTextTableFormat():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTimeEdit.prg b/harbour/contrib/hbqt/qtgui/g/TQTimeEdit.prg index 5be1bddead..6a45af7b30 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTimeEdit.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTimeEdit.prg @@ -98,9 +98,6 @@ FUNCTION QTimeEdit( ... ) RETURN HB_QTimeEdit():new( ... ) -FUNCTION QTimeEditFrom( ... ) - RETURN HB_QTimeEdit():from( ... ) - FUNCTION QTimeEditFromPointer( ... ) RETURN HB_QTimeEdit():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQToolBar.prg b/harbour/contrib/hbqt/qtgui/g/TQToolBar.prg index 7d14692990..0cb63ca72a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQToolBar.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQToolBar.prg @@ -98,9 +98,6 @@ FUNCTION QToolBar( ... ) RETURN HB_QToolBar():new( ... ) -FUNCTION QToolBarFrom( ... ) - RETURN HB_QToolBar():from( ... ) - FUNCTION QToolBarFromPointer( ... ) RETURN HB_QToolBar():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQToolBox.prg b/harbour/contrib/hbqt/qtgui/g/TQToolBox.prg index aef78b9b89..ded9c65b6a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQToolBox.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQToolBox.prg @@ -98,9 +98,6 @@ FUNCTION QToolBox( ... ) RETURN HB_QToolBox():new( ... ) -FUNCTION QToolBoxFrom( ... ) - RETURN HB_QToolBox():from( ... ) - FUNCTION QToolBoxFromPointer( ... ) RETURN HB_QToolBox():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQToolButton.prg b/harbour/contrib/hbqt/qtgui/g/TQToolButton.prg index 5ad92a787e..ba39fc2989 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQToolButton.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQToolButton.prg @@ -98,9 +98,6 @@ FUNCTION QToolButton( ... ) RETURN HB_QToolButton():new( ... ) -FUNCTION QToolButtonFrom( ... ) - RETURN HB_QToolButton():from( ... ) - FUNCTION QToolButtonFromPointer( ... ) RETURN HB_QToolButton():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTransform.prg b/harbour/contrib/hbqt/qtgui/g/TQTransform.prg index 2126589dc2..8f3f0e59e6 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTransform.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTransform.prg @@ -98,9 +98,6 @@ FUNCTION QTransform( ... ) RETURN HB_QTransform():new( ... ) -FUNCTION QTransformFrom( ... ) - RETURN HB_QTransform():from( ... ) - FUNCTION QTransformFromPointer( ... ) RETURN HB_QTransform():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTreeView.prg b/harbour/contrib/hbqt/qtgui/g/TQTreeView.prg index 482e941207..c93bacd3a0 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTreeView.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTreeView.prg @@ -98,9 +98,6 @@ FUNCTION QTreeView( ... ) RETURN HB_QTreeView():new( ... ) -FUNCTION QTreeViewFrom( ... ) - RETURN HB_QTreeView():from( ... ) - FUNCTION QTreeViewFromPointer( ... ) RETURN HB_QTreeView():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTreeWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQTreeWidget.prg index 3792793b83..3c057c60c4 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTreeWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTreeWidget.prg @@ -98,9 +98,6 @@ FUNCTION QTreeWidget( ... ) RETURN HB_QTreeWidget():new( ... ) -FUNCTION QTreeWidgetFrom( ... ) - RETURN HB_QTreeWidget():from( ... ) - FUNCTION QTreeWidgetFromPointer( ... ) RETURN HB_QTreeWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQTreeWidgetItem.prg b/harbour/contrib/hbqt/qtgui/g/TQTreeWidgetItem.prg index a970e08fcd..c7df42e9f4 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQTreeWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQTreeWidgetItem.prg @@ -98,9 +98,6 @@ FUNCTION QTreeWidgetItem( ... ) RETURN HB_QTreeWidgetItem():new( ... ) -FUNCTION QTreeWidgetItemFrom( ... ) - RETURN HB_QTreeWidgetItem():from( ... ) - FUNCTION QTreeWidgetItemFromPointer( ... ) RETURN HB_QTreeWidgetItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQVBoxLayout.prg b/harbour/contrib/hbqt/qtgui/g/TQVBoxLayout.prg index 23c85f257d..7e3222e13e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQVBoxLayout.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQVBoxLayout.prg @@ -98,9 +98,6 @@ FUNCTION QVBoxLayout( ... ) RETURN HB_QVBoxLayout():new( ... ) -FUNCTION QVBoxLayoutFrom( ... ) - RETURN HB_QVBoxLayout():from( ... ) - FUNCTION QVBoxLayoutFromPointer( ... ) RETURN HB_QVBoxLayout():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQValidator.prg b/harbour/contrib/hbqt/qtgui/g/TQValidator.prg index 6a834626d8..cb74bc71b3 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQValidator.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQValidator.prg @@ -98,9 +98,6 @@ FUNCTION QValidator( ... ) RETURN HB_QValidator():new( ... ) -FUNCTION QValidatorFrom( ... ) - RETURN HB_QValidator():from( ... ) - FUNCTION QValidatorFromPointer( ... ) RETURN HB_QValidator():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWheelEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQWheelEvent.prg index d331ddd407..47edc2e905 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWheelEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWheelEvent.prg @@ -98,9 +98,6 @@ FUNCTION QWheelEvent( ... ) RETURN HB_QWheelEvent():new( ... ) -FUNCTION QWheelEventFrom( ... ) - RETURN HB_QWheelEvent():from( ... ) - FUNCTION QWheelEventFromPointer( ... ) RETURN HB_QWheelEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWidget.prg b/harbour/contrib/hbqt/qtgui/g/TQWidget.prg index 2a90294de8..06f1bd5d15 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWidget.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWidget.prg @@ -98,9 +98,6 @@ FUNCTION QWidget( ... ) RETURN HB_QWidget():new( ... ) -FUNCTION QWidgetFrom( ... ) - RETURN HB_QWidget():from( ... ) - FUNCTION QWidgetFromPointer( ... ) RETURN HB_QWidget():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWidgetAction.prg b/harbour/contrib/hbqt/qtgui/g/TQWidgetAction.prg index f05d4416d7..2f8c32e451 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWidgetAction.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWidgetAction.prg @@ -98,9 +98,6 @@ FUNCTION QWidgetAction( ... ) RETURN HB_QWidgetAction():new( ... ) -FUNCTION QWidgetActionFrom( ... ) - RETURN HB_QWidgetAction():from( ... ) - FUNCTION QWidgetActionFromPointer( ... ) RETURN HB_QWidgetAction():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWidgetItem.prg b/harbour/contrib/hbqt/qtgui/g/TQWidgetItem.prg index 35a74e0f95..c8362c5f9b 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWidgetItem.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWidgetItem.prg @@ -98,9 +98,6 @@ FUNCTION QWidgetItem( ... ) RETURN HB_QWidgetItem():new( ... ) -FUNCTION QWidgetItemFrom( ... ) - RETURN HB_QWidgetItem():from( ... ) - FUNCTION QWidgetItemFromPointer( ... ) RETURN HB_QWidgetItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWindowStateChangeEvent.prg b/harbour/contrib/hbqt/qtgui/g/TQWindowStateChangeEvent.prg index 6ef385fcda..125fc272e0 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWindowStateChangeEvent.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWindowStateChangeEvent.prg @@ -98,9 +98,6 @@ FUNCTION QWindowStateChangeEvent( ... ) RETURN HB_QWindowStateChangeEvent():new( ... ) -FUNCTION QWindowStateChangeEventFrom( ... ) - RETURN HB_QWindowStateChangeEvent():from( ... ) - FUNCTION QWindowStateChangeEventFromPointer( ... ) RETURN HB_QWindowStateChangeEvent():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWindowsStyle.prg b/harbour/contrib/hbqt/qtgui/g/TQWindowsStyle.prg index a3c5f0d3aa..e684410a9a 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWindowsStyle.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWindowsStyle.prg @@ -98,9 +98,6 @@ FUNCTION QWindowsStyle( ... ) RETURN HB_QWindowsStyle():new( ... ) -FUNCTION QWindowsStyleFrom( ... ) - RETURN HB_QWindowsStyle():from( ... ) - FUNCTION QWindowsStyleFromPointer( ... ) RETURN HB_QWindowsStyle():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWizard.prg b/harbour/contrib/hbqt/qtgui/g/TQWizard.prg index 2d6d3c94ce..c9408ee98e 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWizard.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWizard.prg @@ -98,9 +98,6 @@ FUNCTION QWizard( ... ) RETURN HB_QWizard():new( ... ) -FUNCTION QWizardFrom( ... ) - RETURN HB_QWizard():from( ... ) - FUNCTION QWizardFromPointer( ... ) RETURN HB_QWizard():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/g/TQWizardPage.prg b/harbour/contrib/hbqt/qtgui/g/TQWizardPage.prg index 548d80fd28..859a3faf34 100644 --- a/harbour/contrib/hbqt/qtgui/g/TQWizardPage.prg +++ b/harbour/contrib/hbqt/qtgui/g/TQWizardPage.prg @@ -98,9 +98,6 @@ FUNCTION QWizardPage( ... ) RETURN HB_QWizardPage():new( ... ) -FUNCTION QWizardPageFrom( ... ) - RETURN HB_QWizardPage():from( ... ) - FUNCTION QWizardPageFromPointer( ... ) RETURN HB_QWizardPage():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtgui/hbqtgui.ch b/harbour/contrib/hbqt/qtgui/hbqtgui.ch index 882e10d8b7..d9b736355d 100644 --- a/harbour/contrib/hbqt/qtgui/hbqtgui.ch +++ b/harbour/contrib/hbqt/qtgui/hbqtgui.ch @@ -2265,6 +2265,18 @@ #define QComboBox_AdjustToMinimumContentsLength 2 // Use AdjustToContents or AdjustToContentsOnFirstShow instead. #define QComboBox_AdjustToMinimumContentsLengthWithIcon 3 // The combobox will adjust to minimumContentsLength plus space for an icon. For performance reasons use this policy on large models. +#define QDesktopServices_DesktopLocation 0 // Returns the user's desktop directory. +#define QDesktopServices_DocumentsLocation 1 // Returns the user's document. +#define QDesktopServices_FontsLocation 2 // Returns the user's fonts. +#define QDesktopServices_ApplicationsLocation 3 // Returns the user's applications. +#define QDesktopServices_MusicLocation 4 // Returns the users music. +#define QDesktopServices_MoviesLocation 5 // Returns the user's movies. +#define QDesktopServices_PicturesLocation 6 // Returns the user's pictures. +#define QDesktopServices_TempLocation 7 // Returns the system's temporary directory. +#define QDesktopServices_HomeLocation 8 // Returns the user's home directory. +#define QDesktopServices_DataLocation 9 // Returns a directory location where persistent application data can be stored. QCoreApplication::applicationName and QCoreApplication::organizationName should work on all platforms. +#define QDesktopServices_CacheLocation 10 // Returns a directory location where user-specific non-essential (cached) data should be written. + /*----------------------------------------------------------------------*/ // HBQT Defined Constants /*----------------------------------------------------------------------*/ diff --git a/harbour/contrib/hbqt/qtgui/hbqtgui.hbx b/harbour/contrib/hbqt/qtgui/hbqtgui.hbx index 3169867335..6d2f2f2fd7 100644 --- a/harbour/contrib/hbqt/qtgui/hbqtgui.hbx +++ b/harbour/contrib/hbqt/qtgui/hbqtgui.hbx @@ -29,27 +29,20 @@ #endif DYNAMIC HBQABSTRACTITEMMODEL -DYNAMIC HBQABSTRACTITEMMODELFROM DYNAMIC HBQABSTRACTITEMMODELFROMPOINTER DYNAMIC HBQGRAPHICSITEM -DYNAMIC HBQGRAPHICSITEMFROM DYNAMIC HBQGRAPHICSITEMFROMPOINTER DYNAMIC HBQGRAPHICSSCENE -DYNAMIC HBQGRAPHICSSCENEFROM DYNAMIC HBQGRAPHICSSCENEFROMPOINTER DYNAMIC HBQPLAINTEXTEDIT -DYNAMIC HBQPLAINTEXTEDITFROM DYNAMIC HBQPLAINTEXTEDITFROMPOINTER DYNAMIC HBQSYNTAXHIGHLIGHTER -DYNAMIC HBQSYNTAXHIGHLIGHTERFROM DYNAMIC HBQSYNTAXHIGHLIGHTERFROMPOINTER DYNAMIC HBQTABLEVIEW -DYNAMIC HBQTABLEVIEWFROM DYNAMIC HBQTABLEVIEWFROMPOINTER DYNAMIC HBQTEXTBLOCKUSERDATA -DYNAMIC HBQTEXTBLOCKUSERDATAFROM DYNAMIC HBQTEXTBLOCKUSERDATAFROMPOINTER -DYNAMIC HBQTUI +DYNAMIC HBQTUI2 DYNAMIC HBQT_ERRORSYS DYNAMIC HBQT_QMAINWINDOW_RESTSETTINGS DYNAMIC HBQT_QMAINWINDOW_SAVESETTINGS @@ -306,7 +299,6 @@ DYNAMIC HB_QTRANSFORM DYNAMIC HB_QTREEVIEW DYNAMIC HB_QTREEWIDGET DYNAMIC HB_QTREEWIDGETITEM -DYNAMIC HB_QUILOADER DYNAMIC HB_QVALIDATOR DYNAMIC HB_QVBOXLAYOUT DYNAMIC HB_QWHEELEVENT @@ -318,769 +310,512 @@ DYNAMIC HB_QWINDOWSTATECHANGEEVENT DYNAMIC HB_QWIZARD DYNAMIC HB_QWIZARDPAGE DYNAMIC QABSTRACTBUTTON -DYNAMIC QABSTRACTBUTTONFROM DYNAMIC QABSTRACTBUTTONFROMPOINTER DYNAMIC QABSTRACTGRAPHICSSHAPEITEM -DYNAMIC QABSTRACTGRAPHICSSHAPEITEMFROM DYNAMIC QABSTRACTGRAPHICSSHAPEITEMFROMPOINTER DYNAMIC QABSTRACTITEMDELEGATE -DYNAMIC QABSTRACTITEMDELEGATEFROM DYNAMIC QABSTRACTITEMDELEGATEFROMPOINTER DYNAMIC QABSTRACTITEMVIEW -DYNAMIC QABSTRACTITEMVIEWFROM DYNAMIC QABSTRACTITEMVIEWFROMPOINTER DYNAMIC QABSTRACTPRINTDIALOG -DYNAMIC QABSTRACTPRINTDIALOGFROM DYNAMIC QABSTRACTPRINTDIALOGFROMPOINTER DYNAMIC QABSTRACTPROXYMODEL -DYNAMIC QABSTRACTPROXYMODELFROM DYNAMIC QABSTRACTPROXYMODELFROMPOINTER DYNAMIC QABSTRACTSCROLLAREA -DYNAMIC QABSTRACTSCROLLAREAFROM DYNAMIC QABSTRACTSCROLLAREAFROMPOINTER DYNAMIC QABSTRACTSLIDER -DYNAMIC QABSTRACTSLIDERFROM DYNAMIC QABSTRACTSLIDERFROMPOINTER DYNAMIC QABSTRACTSPINBOX -DYNAMIC QABSTRACTSPINBOXFROM DYNAMIC QABSTRACTSPINBOXFROMPOINTER DYNAMIC QABSTRACTTEXTDOCUMENTLAYOUT -DYNAMIC QABSTRACTTEXTDOCUMENTLAYOUTFROM DYNAMIC QABSTRACTTEXTDOCUMENTLAYOUTFROMPOINTER DYNAMIC QACTION -DYNAMIC QACTIONFROM DYNAMIC QACTIONFROMPOINTER DYNAMIC QACTIONGROUP -DYNAMIC QACTIONGROUPFROM DYNAMIC QACTIONGROUPFROMPOINTER DYNAMIC QAPPLICATION -DYNAMIC QAPPLICATIONFROM DYNAMIC QAPPLICATIONFROMPOINTER DYNAMIC QBITMAP -DYNAMIC QBITMAPFROM DYNAMIC QBITMAPFROMPOINTER DYNAMIC QBOXLAYOUT -DYNAMIC QBOXLAYOUTFROM DYNAMIC QBOXLAYOUTFROMPOINTER DYNAMIC QBRUSH -DYNAMIC QBRUSHFROM DYNAMIC QBRUSHFROMPOINTER DYNAMIC QBUTTONGROUP -DYNAMIC QBUTTONGROUPFROM DYNAMIC QBUTTONGROUPFROMPOINTER DYNAMIC QCALENDARWIDGET -DYNAMIC QCALENDARWIDGETFROM DYNAMIC QCALENDARWIDGETFROMPOINTER DYNAMIC QCHECKBOX -DYNAMIC QCHECKBOXFROM DYNAMIC QCHECKBOXFROMPOINTER DYNAMIC QCLIPBOARD -DYNAMIC QCLIPBOARDFROM DYNAMIC QCLIPBOARDFROMPOINTER DYNAMIC QCOLOR DYNAMIC QCOLORDIALOG -DYNAMIC QCOLORDIALOGFROM DYNAMIC QCOLORDIALOGFROMPOINTER -DYNAMIC QCOLORFROM DYNAMIC QCOLORFROMPOINTER DYNAMIC QCOMBOBOX -DYNAMIC QCOMBOBOXFROM DYNAMIC QCOMBOBOXFROMPOINTER DYNAMIC QCOMMANDLINKBUTTON -DYNAMIC QCOMMANDLINKBUTTONFROM DYNAMIC QCOMMANDLINKBUTTONFROMPOINTER DYNAMIC QCOMMONSTYLE -DYNAMIC QCOMMONSTYLEFROM DYNAMIC QCOMMONSTYLEFROMPOINTER DYNAMIC QCOMPLETER -DYNAMIC QCOMPLETERFROM DYNAMIC QCOMPLETERFROMPOINTER DYNAMIC QCONICALGRADIENT -DYNAMIC QCONICALGRADIENTFROM DYNAMIC QCONICALGRADIENTFROMPOINTER DYNAMIC QCONTEXTMENUEVENT -DYNAMIC QCONTEXTMENUEVENTFROM DYNAMIC QCONTEXTMENUEVENTFROMPOINTER DYNAMIC QCURSOR -DYNAMIC QCURSORFROM DYNAMIC QCURSORFROMPOINTER DYNAMIC QDATEEDIT -DYNAMIC QDATEEDITFROM DYNAMIC QDATEEDITFROMPOINTER DYNAMIC QDATETIMEEDIT -DYNAMIC QDATETIMEEDITFROM DYNAMIC QDATETIMEEDITFROMPOINTER DYNAMIC QDESKTOPSERVICES -DYNAMIC QDESKTOPSERVICESFROM DYNAMIC QDESKTOPSERVICESFROMPOINTER DYNAMIC QDESKTOPWIDGET -DYNAMIC QDESKTOPWIDGETFROM DYNAMIC QDESKTOPWIDGETFROMPOINTER DYNAMIC QDIAL -DYNAMIC QDIALFROM DYNAMIC QDIALFROMPOINTER DYNAMIC QDIALOG -DYNAMIC QDIALOGFROM DYNAMIC QDIALOGFROMPOINTER DYNAMIC QDIRMODEL -DYNAMIC QDIRMODELFROM DYNAMIC QDIRMODELFROMPOINTER DYNAMIC QDOCKWIDGET -DYNAMIC QDOCKWIDGETFROM DYNAMIC QDOCKWIDGETFROMPOINTER DYNAMIC QDOUBLESPINBOX -DYNAMIC QDOUBLESPINBOXFROM DYNAMIC QDOUBLESPINBOXFROMPOINTER DYNAMIC QDOUBLEVALIDATOR -DYNAMIC QDOUBLEVALIDATORFROM DYNAMIC QDOUBLEVALIDATORFROMPOINTER DYNAMIC QDRAG DYNAMIC QDRAGENTEREVENT -DYNAMIC QDRAGENTEREVENTFROM DYNAMIC QDRAGENTEREVENTFROMPOINTER -DYNAMIC QDRAGFROM DYNAMIC QDRAGFROMPOINTER DYNAMIC QDRAGLEAVEEVENT -DYNAMIC QDRAGLEAVEEVENTFROM DYNAMIC QDRAGLEAVEEVENTFROMPOINTER DYNAMIC QDRAGMOVEEVENT -DYNAMIC QDRAGMOVEEVENTFROM DYNAMIC QDRAGMOVEEVENTFROMPOINTER DYNAMIC QDROPEVENT -DYNAMIC QDROPEVENTFROM DYNAMIC QDROPEVENTFROMPOINTER DYNAMIC QERRORMESSAGE -DYNAMIC QERRORMESSAGEFROM DYNAMIC QERRORMESSAGEFROMPOINTER DYNAMIC QFILEDIALOG -DYNAMIC QFILEDIALOGFROM DYNAMIC QFILEDIALOGFROMPOINTER DYNAMIC QFILEICONPROVIDER -DYNAMIC QFILEICONPROVIDERFROM DYNAMIC QFILEICONPROVIDERFROMPOINTER DYNAMIC QFILESYSTEMMODEL -DYNAMIC QFILESYSTEMMODELFROM DYNAMIC QFILESYSTEMMODELFROMPOINTER DYNAMIC QFOCUSEVENT -DYNAMIC QFOCUSEVENTFROM DYNAMIC QFOCUSEVENTFROMPOINTER DYNAMIC QFOCUSFRAME -DYNAMIC QFOCUSFRAMEFROM DYNAMIC QFOCUSFRAMEFROMPOINTER DYNAMIC QFONT DYNAMIC QFONTCOMBOBOX -DYNAMIC QFONTCOMBOBOXFROM DYNAMIC QFONTCOMBOBOXFROMPOINTER DYNAMIC QFONTDATABASE -DYNAMIC QFONTDATABASEFROM DYNAMIC QFONTDATABASEFROMPOINTER DYNAMIC QFONTDIALOG -DYNAMIC QFONTDIALOGFROM DYNAMIC QFONTDIALOGFROMPOINTER -DYNAMIC QFONTFROM DYNAMIC QFONTFROMPOINTER DYNAMIC QFONTINFO -DYNAMIC QFONTINFOFROM DYNAMIC QFONTINFOFROMPOINTER DYNAMIC QFONTMETRICS DYNAMIC QFONTMETRICSF -DYNAMIC QFONTMETRICSFFROM DYNAMIC QFONTMETRICSFFROMPOINTER -DYNAMIC QFONTMETRICSFROM DYNAMIC QFONTMETRICSFROMPOINTER DYNAMIC QFORMLAYOUT -DYNAMIC QFORMLAYOUTFROM DYNAMIC QFORMLAYOUTFROMPOINTER DYNAMIC QFRAME -DYNAMIC QFRAMEFROM DYNAMIC QFRAMEFROMPOINTER DYNAMIC QGRADIENT -DYNAMIC QGRADIENTFROM DYNAMIC QGRADIENTFROMPOINTER DYNAMIC QGRAPHICSELLIPSEITEM -DYNAMIC QGRAPHICSELLIPSEITEMFROM DYNAMIC QGRAPHICSELLIPSEITEMFROMPOINTER DYNAMIC QGRAPHICSGRIDLAYOUT -DYNAMIC QGRAPHICSGRIDLAYOUTFROM DYNAMIC QGRAPHICSGRIDLAYOUTFROMPOINTER DYNAMIC QGRAPHICSITEM DYNAMIC QGRAPHICSITEMANIMATION -DYNAMIC QGRAPHICSITEMANIMATIONFROM DYNAMIC QGRAPHICSITEMANIMATIONFROMPOINTER -DYNAMIC QGRAPHICSITEMFROM DYNAMIC QGRAPHICSITEMFROMPOINTER DYNAMIC QGRAPHICSITEMGROUP -DYNAMIC QGRAPHICSITEMGROUPFROM DYNAMIC QGRAPHICSITEMGROUPFROMPOINTER DYNAMIC QGRAPHICSLAYOUT -DYNAMIC QGRAPHICSLAYOUTFROM DYNAMIC QGRAPHICSLAYOUTFROMPOINTER DYNAMIC QGRAPHICSLAYOUTITEM -DYNAMIC QGRAPHICSLAYOUTITEMFROM DYNAMIC QGRAPHICSLAYOUTITEMFROMPOINTER DYNAMIC QGRAPHICSLINEARLAYOUT -DYNAMIC QGRAPHICSLINEARLAYOUTFROM DYNAMIC QGRAPHICSLINEARLAYOUTFROMPOINTER DYNAMIC QGRAPHICSLINEITEM -DYNAMIC QGRAPHICSLINEITEMFROM DYNAMIC QGRAPHICSLINEITEMFROMPOINTER DYNAMIC QGRAPHICSPATHITEM -DYNAMIC QGRAPHICSPATHITEMFROM DYNAMIC QGRAPHICSPATHITEMFROMPOINTER DYNAMIC QGRAPHICSPIXMAPITEM -DYNAMIC QGRAPHICSPIXMAPITEMFROM DYNAMIC QGRAPHICSPIXMAPITEMFROMPOINTER DYNAMIC QGRAPHICSPOLYGONITEM -DYNAMIC QGRAPHICSPOLYGONITEMFROM DYNAMIC QGRAPHICSPOLYGONITEMFROMPOINTER DYNAMIC QGRAPHICSPROXYWIDGET -DYNAMIC QGRAPHICSPROXYWIDGETFROM DYNAMIC QGRAPHICSPROXYWIDGETFROMPOINTER DYNAMIC QGRAPHICSRECTITEM -DYNAMIC QGRAPHICSRECTITEMFROM DYNAMIC QGRAPHICSRECTITEMFROMPOINTER DYNAMIC QGRAPHICSSCENE DYNAMIC QGRAPHICSSCENECONTEXTMENUEVENT -DYNAMIC QGRAPHICSSCENECONTEXTMENUEVENTFROM DYNAMIC QGRAPHICSSCENECONTEXTMENUEVENTFROMPOINTER DYNAMIC QGRAPHICSSCENEDRAGDROPEVENT -DYNAMIC QGRAPHICSSCENEDRAGDROPEVENTFROM DYNAMIC QGRAPHICSSCENEDRAGDROPEVENTFROMPOINTER DYNAMIC QGRAPHICSSCENEEVENT -DYNAMIC QGRAPHICSSCENEEVENTFROM DYNAMIC QGRAPHICSSCENEEVENTFROMPOINTER -DYNAMIC QGRAPHICSSCENEFROM DYNAMIC QGRAPHICSSCENEFROMPOINTER DYNAMIC QGRAPHICSSCENEHELPEVENT -DYNAMIC QGRAPHICSSCENEHELPEVENTFROM DYNAMIC QGRAPHICSSCENEHELPEVENTFROMPOINTER DYNAMIC QGRAPHICSSCENEHOVEREVENT -DYNAMIC QGRAPHICSSCENEHOVEREVENTFROM DYNAMIC QGRAPHICSSCENEHOVEREVENTFROMPOINTER DYNAMIC QGRAPHICSSCENEMOUSEEVENT -DYNAMIC QGRAPHICSSCENEMOUSEEVENTFROM DYNAMIC QGRAPHICSSCENEMOUSEEVENTFROMPOINTER DYNAMIC QGRAPHICSSCENEMOVEEVENT -DYNAMIC QGRAPHICSSCENEMOVEEVENTFROM DYNAMIC QGRAPHICSSCENEMOVEEVENTFROMPOINTER DYNAMIC QGRAPHICSSCENERESIZEEVENT -DYNAMIC QGRAPHICSSCENERESIZEEVENTFROM DYNAMIC QGRAPHICSSCENERESIZEEVENTFROMPOINTER DYNAMIC QGRAPHICSSCENEWHEELEVENT -DYNAMIC QGRAPHICSSCENEWHEELEVENTFROM DYNAMIC QGRAPHICSSCENEWHEELEVENTFROMPOINTER DYNAMIC QGRAPHICSSIMPLETEXTITEM -DYNAMIC QGRAPHICSSIMPLETEXTITEMFROM DYNAMIC QGRAPHICSSIMPLETEXTITEMFROMPOINTER DYNAMIC QGRAPHICSTEXTITEM -DYNAMIC QGRAPHICSTEXTITEMFROM DYNAMIC QGRAPHICSTEXTITEMFROMPOINTER DYNAMIC QGRAPHICSVIEW -DYNAMIC QGRAPHICSVIEWFROM DYNAMIC QGRAPHICSVIEWFROMPOINTER DYNAMIC QGRAPHICSWIDGET -DYNAMIC QGRAPHICSWIDGETFROM DYNAMIC QGRAPHICSWIDGETFROMPOINTER DYNAMIC QGRIDLAYOUT -DYNAMIC QGRIDLAYOUTFROM DYNAMIC QGRIDLAYOUTFROMPOINTER DYNAMIC QGROUPBOX -DYNAMIC QGROUPBOXFROM DYNAMIC QGROUPBOXFROMPOINTER DYNAMIC QHBOXLAYOUT -DYNAMIC QHBOXLAYOUTFROM DYNAMIC QHBOXLAYOUTFROMPOINTER DYNAMIC QHEADERVIEW -DYNAMIC QHEADERVIEWFROM DYNAMIC QHEADERVIEWFROMPOINTER DYNAMIC QHELPEVENT -DYNAMIC QHELPEVENTFROM DYNAMIC QHELPEVENTFROMPOINTER DYNAMIC QHIDEEVENT -DYNAMIC QHIDEEVENTFROM DYNAMIC QHIDEEVENTFROMPOINTER DYNAMIC QICON -DYNAMIC QICONFROM DYNAMIC QICONFROMPOINTER DYNAMIC QIMAGE -DYNAMIC QIMAGEFROM DYNAMIC QIMAGEFROMPOINTER DYNAMIC QIMAGEREADER -DYNAMIC QIMAGEREADERFROM DYNAMIC QIMAGEREADERFROMPOINTER DYNAMIC QIMAGEWRITER -DYNAMIC QIMAGEWRITERFROM DYNAMIC QIMAGEWRITERFROMPOINTER DYNAMIC QINPUTDIALOG -DYNAMIC QINPUTDIALOGFROM DYNAMIC QINPUTDIALOGFROMPOINTER DYNAMIC QINPUTEVENT -DYNAMIC QINPUTEVENTFROM DYNAMIC QINPUTEVENTFROMPOINTER DYNAMIC QINPUTMETHODEVENT -DYNAMIC QINPUTMETHODEVENTFROM DYNAMIC QINPUTMETHODEVENTFROMPOINTER DYNAMIC QINTVALIDATOR -DYNAMIC QINTVALIDATORFROM DYNAMIC QINTVALIDATORFROMPOINTER DYNAMIC QITEMDELEGATE -DYNAMIC QITEMDELEGATEFROM DYNAMIC QITEMDELEGATEFROMPOINTER DYNAMIC QITEMEDITORCREATORBASE -DYNAMIC QITEMEDITORCREATORBASEFROM DYNAMIC QITEMEDITORCREATORBASEFROMPOINTER DYNAMIC QITEMEDITORFACTORY -DYNAMIC QITEMEDITORFACTORYFROM DYNAMIC QITEMEDITORFACTORYFROMPOINTER DYNAMIC QITEMSELECTION -DYNAMIC QITEMSELECTIONFROM DYNAMIC QITEMSELECTIONFROMPOINTER DYNAMIC QITEMSELECTIONMODEL -DYNAMIC QITEMSELECTIONMODELFROM DYNAMIC QITEMSELECTIONMODELFROMPOINTER DYNAMIC QKEYEVENT -DYNAMIC QKEYEVENTFROM DYNAMIC QKEYEVENTFROMPOINTER DYNAMIC QKEYSEQUENCE -DYNAMIC QKEYSEQUENCEFROM DYNAMIC QKEYSEQUENCEFROMPOINTER DYNAMIC QLABEL -DYNAMIC QLABELFROM DYNAMIC QLABELFROMPOINTER DYNAMIC QLAYOUT -DYNAMIC QLAYOUTFROM DYNAMIC QLAYOUTFROMPOINTER DYNAMIC QLAYOUTITEM -DYNAMIC QLAYOUTITEMFROM DYNAMIC QLAYOUTITEMFROMPOINTER DYNAMIC QLCDNUMBER -DYNAMIC QLCDNUMBERFROM DYNAMIC QLCDNUMBERFROMPOINTER DYNAMIC QLINEARGRADIENT -DYNAMIC QLINEARGRADIENTFROM DYNAMIC QLINEARGRADIENTFROMPOINTER DYNAMIC QLINEEDIT -DYNAMIC QLINEEDITFROM DYNAMIC QLINEEDITFROMPOINTER DYNAMIC QLISTVIEW -DYNAMIC QLISTVIEWFROM DYNAMIC QLISTVIEWFROMPOINTER DYNAMIC QLISTWIDGET -DYNAMIC QLISTWIDGETFROM DYNAMIC QLISTWIDGETFROMPOINTER DYNAMIC QLISTWIDGETITEM -DYNAMIC QLISTWIDGETITEMFROM DYNAMIC QLISTWIDGETITEMFROMPOINTER DYNAMIC QMAINWINDOW -DYNAMIC QMAINWINDOWFROM DYNAMIC QMAINWINDOWFROMPOINTER DYNAMIC QMATRIX -DYNAMIC QMATRIXFROM DYNAMIC QMATRIXFROMPOINTER DYNAMIC QMDIAREA -DYNAMIC QMDIAREAFROM DYNAMIC QMDIAREAFROMPOINTER DYNAMIC QMDISUBWINDOW -DYNAMIC QMDISUBWINDOWFROM DYNAMIC QMDISUBWINDOWFROMPOINTER DYNAMIC QMENU DYNAMIC QMENUBAR -DYNAMIC QMENUBARFROM DYNAMIC QMENUBARFROMPOINTER -DYNAMIC QMENUFROM DYNAMIC QMENUFROMPOINTER DYNAMIC QMESSAGEBOX -DYNAMIC QMESSAGEBOXFROM DYNAMIC QMESSAGEBOXFROMPOINTER DYNAMIC QMOUSEEVENT -DYNAMIC QMOUSEEVENTFROM DYNAMIC QMOUSEEVENTFROMPOINTER DYNAMIC QMOVEEVENT -DYNAMIC QMOVEEVENTFROM DYNAMIC QMOVEEVENTFROMPOINTER DYNAMIC QMOVIE -DYNAMIC QMOVIEFROM DYNAMIC QMOVIEFROMPOINTER DYNAMIC QPAGESETUPDIALOG -DYNAMIC QPAGESETUPDIALOGFROM DYNAMIC QPAGESETUPDIALOGFROMPOINTER DYNAMIC QPAINTDEVICE -DYNAMIC QPAINTDEVICEFROM DYNAMIC QPAINTDEVICEFROMPOINTER DYNAMIC QPAINTENGINE -DYNAMIC QPAINTENGINEFROM DYNAMIC QPAINTENGINEFROMPOINTER DYNAMIC QPAINTER -DYNAMIC QPAINTERFROM DYNAMIC QPAINTERFROMPOINTER DYNAMIC QPAINTERPATH -DYNAMIC QPAINTERPATHFROM DYNAMIC QPAINTERPATHFROMPOINTER DYNAMIC QPAINTEVENT -DYNAMIC QPAINTEVENTFROM DYNAMIC QPAINTEVENTFROMPOINTER DYNAMIC QPALETTE -DYNAMIC QPALETTEFROM DYNAMIC QPALETTEFROMPOINTER DYNAMIC QPEN -DYNAMIC QPENFROM DYNAMIC QPENFROMPOINTER DYNAMIC QPICTURE -DYNAMIC QPICTUREFROM DYNAMIC QPICTUREFROMPOINTER DYNAMIC QPIXMAP -DYNAMIC QPIXMAPFROM DYNAMIC QPIXMAPFROMPOINTER DYNAMIC QPLAINTEXTDOCUMENTLAYOUT -DYNAMIC QPLAINTEXTDOCUMENTLAYOUTFROM DYNAMIC QPLAINTEXTDOCUMENTLAYOUTFROMPOINTER DYNAMIC QPLAINTEXTEDIT -DYNAMIC QPLAINTEXTEDITFROM DYNAMIC QPLAINTEXTEDITFROMPOINTER DYNAMIC QPOLYGON DYNAMIC QPOLYGONF -DYNAMIC QPOLYGONFFROM DYNAMIC QPOLYGONFFROMPOINTER -DYNAMIC QPOLYGONFROM DYNAMIC QPOLYGONFROMPOINTER DYNAMIC QPRINTDIALOG -DYNAMIC QPRINTDIALOGFROM DYNAMIC QPRINTDIALOGFROMPOINTER DYNAMIC QPRINTENGINE -DYNAMIC QPRINTENGINEFROM DYNAMIC QPRINTENGINEFROMPOINTER DYNAMIC QPRINTER -DYNAMIC QPRINTERFROM DYNAMIC QPRINTERFROMPOINTER DYNAMIC QPRINTERINFO -DYNAMIC QPRINTERINFOFROM DYNAMIC QPRINTERINFOFROMPOINTER DYNAMIC QPRINTPREVIEWDIALOG -DYNAMIC QPRINTPREVIEWDIALOGFROM DYNAMIC QPRINTPREVIEWDIALOGFROMPOINTER DYNAMIC QPROGRESSBAR -DYNAMIC QPROGRESSBARFROM DYNAMIC QPROGRESSBARFROMPOINTER DYNAMIC QPROGRESSDIALOG -DYNAMIC QPROGRESSDIALOGFROM DYNAMIC QPROGRESSDIALOGFROMPOINTER DYNAMIC QPUSHBUTTON -DYNAMIC QPUSHBUTTONFROM DYNAMIC QPUSHBUTTONFROMPOINTER DYNAMIC QRADIALGRADIENT -DYNAMIC QRADIALGRADIENTFROM DYNAMIC QRADIALGRADIENTFROMPOINTER DYNAMIC QRADIOBUTTON -DYNAMIC QRADIOBUTTONFROM DYNAMIC QRADIOBUTTONFROMPOINTER DYNAMIC QREGEXPVALIDATOR -DYNAMIC QREGEXPVALIDATORFROM DYNAMIC QREGEXPVALIDATORFROMPOINTER DYNAMIC QREGION -DYNAMIC QREGIONFROM DYNAMIC QREGIONFROMPOINTER DYNAMIC QRESIZEEVENT -DYNAMIC QRESIZEEVENTFROM DYNAMIC QRESIZEEVENTFROMPOINTER DYNAMIC QSCROLLAREA -DYNAMIC QSCROLLAREAFROM DYNAMIC QSCROLLAREAFROMPOINTER DYNAMIC QSCROLLBAR -DYNAMIC QSCROLLBARFROM DYNAMIC QSCROLLBARFROMPOINTER DYNAMIC QSESSIONMANAGER -DYNAMIC QSESSIONMANAGERFROM DYNAMIC QSESSIONMANAGERFROMPOINTER DYNAMIC QSHOWEVENT -DYNAMIC QSHOWEVENTFROM DYNAMIC QSHOWEVENTFROMPOINTER DYNAMIC QSIZEGRIP -DYNAMIC QSIZEGRIPFROM DYNAMIC QSIZEGRIPFROMPOINTER DYNAMIC QSIZEPOLICY -DYNAMIC QSIZEPOLICYFROM DYNAMIC QSIZEPOLICYFROMPOINTER DYNAMIC QSLIDER -DYNAMIC QSLIDERFROM DYNAMIC QSLIDERFROMPOINTER DYNAMIC QSORTFILTERPROXYMODEL -DYNAMIC QSORTFILTERPROXYMODELFROM DYNAMIC QSORTFILTERPROXYMODELFROMPOINTER DYNAMIC QSOUND -DYNAMIC QSOUNDFROM DYNAMIC QSOUNDFROMPOINTER DYNAMIC QSPACERITEM -DYNAMIC QSPACERITEMFROM DYNAMIC QSPACERITEMFROMPOINTER DYNAMIC QSPINBOX -DYNAMIC QSPINBOXFROM DYNAMIC QSPINBOXFROMPOINTER DYNAMIC QSPLASHSCREEN -DYNAMIC QSPLASHSCREENFROM DYNAMIC QSPLASHSCREENFROMPOINTER DYNAMIC QSPLITTER -DYNAMIC QSPLITTERFROM DYNAMIC QSPLITTERFROMPOINTER DYNAMIC QSTACKEDWIDGET -DYNAMIC QSTACKEDWIDGETFROM DYNAMIC QSTACKEDWIDGETFROMPOINTER DYNAMIC QSTANDARDITEM -DYNAMIC QSTANDARDITEMFROM DYNAMIC QSTANDARDITEMFROMPOINTER DYNAMIC QSTANDARDITEMMODEL -DYNAMIC QSTANDARDITEMMODELFROM DYNAMIC QSTANDARDITEMMODELFROMPOINTER DYNAMIC QSTATUSBAR -DYNAMIC QSTATUSBARFROM DYNAMIC QSTATUSBARFROMPOINTER DYNAMIC QSTRINGLISTMODEL -DYNAMIC QSTRINGLISTMODELFROM DYNAMIC QSTRINGLISTMODELFROMPOINTER DYNAMIC QSTYLE DYNAMIC QSTYLEDITEMDELEGATE -DYNAMIC QSTYLEDITEMDELEGATEFROM DYNAMIC QSTYLEDITEMDELEGATEFROMPOINTER DYNAMIC QSTYLEFACTORY -DYNAMIC QSTYLEFACTORYFROM DYNAMIC QSTYLEFACTORYFROMPOINTER -DYNAMIC QSTYLEFROM DYNAMIC QSTYLEFROMPOINTER DYNAMIC QSTYLEHINTRETURN -DYNAMIC QSTYLEHINTRETURNFROM DYNAMIC QSTYLEHINTRETURNFROMPOINTER DYNAMIC QSTYLEHINTRETURNMASK -DYNAMIC QSTYLEHINTRETURNMASKFROM DYNAMIC QSTYLEHINTRETURNMASKFROMPOINTER DYNAMIC QSTYLEHINTRETURNVARIANT -DYNAMIC QSTYLEHINTRETURNVARIANTFROM DYNAMIC QSTYLEHINTRETURNVARIANTFROMPOINTER DYNAMIC QSTYLEOPTION DYNAMIC QSTYLEOPTIONBUTTON -DYNAMIC QSTYLEOPTIONBUTTONFROM DYNAMIC QSTYLEOPTIONBUTTONFROMPOINTER DYNAMIC QSTYLEOPTIONCOMBOBOX -DYNAMIC QSTYLEOPTIONCOMBOBOXFROM DYNAMIC QSTYLEOPTIONCOMBOBOXFROMPOINTER DYNAMIC QSTYLEOPTIONCOMPLEX -DYNAMIC QSTYLEOPTIONCOMPLEXFROM DYNAMIC QSTYLEOPTIONCOMPLEXFROMPOINTER DYNAMIC QSTYLEOPTIONDOCKWIDGET -DYNAMIC QSTYLEOPTIONDOCKWIDGETFROM DYNAMIC QSTYLEOPTIONDOCKWIDGETFROMPOINTER DYNAMIC QSTYLEOPTIONFOCUSRECT -DYNAMIC QSTYLEOPTIONFOCUSRECTFROM DYNAMIC QSTYLEOPTIONFOCUSRECTFROMPOINTER DYNAMIC QSTYLEOPTIONFRAME -DYNAMIC QSTYLEOPTIONFRAMEFROM DYNAMIC QSTYLEOPTIONFRAMEFROMPOINTER -DYNAMIC QSTYLEOPTIONFROM DYNAMIC QSTYLEOPTIONFROMPOINTER DYNAMIC QSTYLEOPTIONGRAPHICSITEM -DYNAMIC QSTYLEOPTIONGRAPHICSITEMFROM DYNAMIC QSTYLEOPTIONGRAPHICSITEMFROMPOINTER DYNAMIC QSTYLEOPTIONGROUPBOX -DYNAMIC QSTYLEOPTIONGROUPBOXFROM DYNAMIC QSTYLEOPTIONGROUPBOXFROMPOINTER DYNAMIC QSTYLEOPTIONHEADER -DYNAMIC QSTYLEOPTIONHEADERFROM DYNAMIC QSTYLEOPTIONHEADERFROMPOINTER DYNAMIC QSTYLEOPTIONMENUITEM -DYNAMIC QSTYLEOPTIONMENUITEMFROM DYNAMIC QSTYLEOPTIONMENUITEMFROMPOINTER DYNAMIC QSTYLEOPTIONPROGRESSBAR -DYNAMIC QSTYLEOPTIONPROGRESSBARFROM DYNAMIC QSTYLEOPTIONPROGRESSBARFROMPOINTER DYNAMIC QSTYLEOPTIONSIZEGRIP -DYNAMIC QSTYLEOPTIONSIZEGRIPFROM DYNAMIC QSTYLEOPTIONSIZEGRIPFROMPOINTER DYNAMIC QSTYLEOPTIONSLIDER -DYNAMIC QSTYLEOPTIONSLIDERFROM DYNAMIC QSTYLEOPTIONSLIDERFROMPOINTER DYNAMIC QSTYLEOPTIONSPINBOX -DYNAMIC QSTYLEOPTIONSPINBOXFROM DYNAMIC QSTYLEOPTIONSPINBOXFROMPOINTER DYNAMIC QSTYLEOPTIONTAB DYNAMIC QSTYLEOPTIONTABBARBASE -DYNAMIC QSTYLEOPTIONTABBARBASEFROM DYNAMIC QSTYLEOPTIONTABBARBASEFROMPOINTER -DYNAMIC QSTYLEOPTIONTABFROM DYNAMIC QSTYLEOPTIONTABFROMPOINTER DYNAMIC QSTYLEOPTIONTABWIDGETFRAME -DYNAMIC QSTYLEOPTIONTABWIDGETFRAMEFROM DYNAMIC QSTYLEOPTIONTABWIDGETFRAMEFROMPOINTER DYNAMIC QSTYLEOPTIONTITLEBAR -DYNAMIC QSTYLEOPTIONTITLEBARFROM DYNAMIC QSTYLEOPTIONTITLEBARFROMPOINTER DYNAMIC QSTYLEOPTIONTOOLBAR -DYNAMIC QSTYLEOPTIONTOOLBARFROM DYNAMIC QSTYLEOPTIONTOOLBARFROMPOINTER DYNAMIC QSTYLEOPTIONTOOLBOX -DYNAMIC QSTYLEOPTIONTOOLBOXFROM DYNAMIC QSTYLEOPTIONTOOLBOXFROMPOINTER DYNAMIC QSTYLEOPTIONTOOLBUTTON -DYNAMIC QSTYLEOPTIONTOOLBUTTONFROM DYNAMIC QSTYLEOPTIONTOOLBUTTONFROMPOINTER DYNAMIC QSTYLEOPTIONVIEWITEM -DYNAMIC QSTYLEOPTIONVIEWITEMFROM DYNAMIC QSTYLEOPTIONVIEWITEMFROMPOINTER DYNAMIC QSTYLEPAINTER -DYNAMIC QSTYLEPAINTERFROM DYNAMIC QSTYLEPAINTERFROMPOINTER DYNAMIC QSYNTAXHIGHLIGHTER -DYNAMIC QSYNTAXHIGHLIGHTERFROM DYNAMIC QSYNTAXHIGHLIGHTERFROMPOINTER DYNAMIC QSYSTEMTRAYICON -DYNAMIC QSYSTEMTRAYICONFROM DYNAMIC QSYSTEMTRAYICONFROMPOINTER DYNAMIC QTABBAR -DYNAMIC QTABBARFROM DYNAMIC QTABBARFROMPOINTER DYNAMIC QTABLEVIEW -DYNAMIC QTABLEVIEWFROM DYNAMIC QTABLEVIEWFROMPOINTER DYNAMIC QTABLEWIDGET -DYNAMIC QTABLEWIDGETFROM DYNAMIC QTABLEWIDGETFROMPOINTER DYNAMIC QTABLEWIDGETITEM -DYNAMIC QTABLEWIDGETITEMFROM DYNAMIC QTABLEWIDGETITEMFROMPOINTER DYNAMIC QTABLEWIDGETSELECTIONRANGE -DYNAMIC QTABLEWIDGETSELECTIONRANGEFROM DYNAMIC QTABLEWIDGETSELECTIONRANGEFROMPOINTER DYNAMIC QTABWIDGET -DYNAMIC QTABWIDGETFROM DYNAMIC QTABWIDGETFROMPOINTER DYNAMIC QTEXTBLOCK DYNAMIC QTEXTBLOCKFORMAT -DYNAMIC QTEXTBLOCKFORMATFROM DYNAMIC QTEXTBLOCKFORMATFROMPOINTER -DYNAMIC QTEXTBLOCKFROM DYNAMIC QTEXTBLOCKFROMPOINTER DYNAMIC QTEXTBLOCKGROUP -DYNAMIC QTEXTBLOCKGROUPFROM DYNAMIC QTEXTBLOCKGROUPFROMPOINTER DYNAMIC QTEXTBROWSER -DYNAMIC QTEXTBROWSERFROM DYNAMIC QTEXTBROWSERFROMPOINTER DYNAMIC QTEXTCHARFORMAT -DYNAMIC QTEXTCHARFORMATFROM DYNAMIC QTEXTCHARFORMATFROMPOINTER DYNAMIC QTEXTCURSOR -DYNAMIC QTEXTCURSORFROM DYNAMIC QTEXTCURSORFROMPOINTER DYNAMIC QTEXTDOCUMENT DYNAMIC QTEXTDOCUMENTFRAGMENT -DYNAMIC QTEXTDOCUMENTFRAGMENTFROM DYNAMIC QTEXTDOCUMENTFRAGMENTFROMPOINTER -DYNAMIC QTEXTDOCUMENTFROM DYNAMIC QTEXTDOCUMENTFROMPOINTER DYNAMIC QTEXTDOCUMENTWRITER -DYNAMIC QTEXTDOCUMENTWRITERFROM DYNAMIC QTEXTDOCUMENTWRITERFROMPOINTER DYNAMIC QTEXTEDIT -DYNAMIC QTEXTEDITFROM DYNAMIC QTEXTEDITFROMPOINTER DYNAMIC QTEXTFORMAT -DYNAMIC QTEXTFORMATFROM DYNAMIC QTEXTFORMATFROMPOINTER DYNAMIC QTEXTFRAGMENT -DYNAMIC QTEXTFRAGMENTFROM DYNAMIC QTEXTFRAGMENTFROMPOINTER DYNAMIC QTEXTFRAME DYNAMIC QTEXTFRAMEFORMAT -DYNAMIC QTEXTFRAMEFORMATFROM DYNAMIC QTEXTFRAMEFORMATFROMPOINTER -DYNAMIC QTEXTFRAMEFROM DYNAMIC QTEXTFRAMEFROMPOINTER DYNAMIC QTEXTIMAGEFORMAT -DYNAMIC QTEXTIMAGEFORMATFROM DYNAMIC QTEXTIMAGEFORMATFROMPOINTER DYNAMIC QTEXTINLINEOBJECT -DYNAMIC QTEXTINLINEOBJECTFROM DYNAMIC QTEXTINLINEOBJECTFROMPOINTER DYNAMIC QTEXTITEM -DYNAMIC QTEXTITEMFROM DYNAMIC QTEXTITEMFROMPOINTER DYNAMIC QTEXTLAYOUT -DYNAMIC QTEXTLAYOUTFROM DYNAMIC QTEXTLAYOUTFROMPOINTER DYNAMIC QTEXTLENGTH -DYNAMIC QTEXTLENGTHFROM DYNAMIC QTEXTLENGTHFROMPOINTER DYNAMIC QTEXTLINE -DYNAMIC QTEXTLINEFROM DYNAMIC QTEXTLINEFROMPOINTER DYNAMIC QTEXTLIST DYNAMIC QTEXTLISTFORMAT -DYNAMIC QTEXTLISTFORMATFROM DYNAMIC QTEXTLISTFORMATFROMPOINTER -DYNAMIC QTEXTLISTFROM DYNAMIC QTEXTLISTFROMPOINTER DYNAMIC QTEXTOBJECT -DYNAMIC QTEXTOBJECTFROM DYNAMIC QTEXTOBJECTFROMPOINTER DYNAMIC QTEXTOPTION -DYNAMIC QTEXTOPTIONFROM DYNAMIC QTEXTOPTIONFROMPOINTER DYNAMIC QTEXTTABLEFORMAT -DYNAMIC QTEXTTABLEFORMATFROM DYNAMIC QTEXTTABLEFORMATFROMPOINTER DYNAMIC QTIMEEDIT -DYNAMIC QTIMEEDITFROM DYNAMIC QTIMEEDITFROMPOINTER DYNAMIC QTOOLBAR -DYNAMIC QTOOLBARFROM DYNAMIC QTOOLBARFROMPOINTER DYNAMIC QTOOLBOX -DYNAMIC QTOOLBOXFROM DYNAMIC QTOOLBOXFROMPOINTER DYNAMIC QTOOLBUTTON -DYNAMIC QTOOLBUTTONFROM DYNAMIC QTOOLBUTTONFROMPOINTER DYNAMIC QTRANSFORM -DYNAMIC QTRANSFORMFROM DYNAMIC QTRANSFORMFROMPOINTER DYNAMIC QTREEVIEW -DYNAMIC QTREEVIEWFROM DYNAMIC QTREEVIEWFROMPOINTER DYNAMIC QTREEWIDGET -DYNAMIC QTREEWIDGETFROM DYNAMIC QTREEWIDGETFROMPOINTER DYNAMIC QTREEWIDGETITEM -DYNAMIC QTREEWIDGETITEMFROM DYNAMIC QTREEWIDGETITEMFROMPOINTER -DYNAMIC QUILOADER -DYNAMIC QUILOADERFROM -DYNAMIC QUILOADERFROMPOINTER DYNAMIC QVALIDATOR -DYNAMIC QVALIDATORFROM DYNAMIC QVALIDATORFROMPOINTER DYNAMIC QVBOXLAYOUT -DYNAMIC QVBOXLAYOUTFROM DYNAMIC QVBOXLAYOUTFROMPOINTER DYNAMIC QWHEELEVENT -DYNAMIC QWHEELEVENTFROM DYNAMIC QWHEELEVENTFROMPOINTER DYNAMIC QWIDGET DYNAMIC QWIDGETACTION -DYNAMIC QWIDGETACTIONFROM DYNAMIC QWIDGETACTIONFROMPOINTER -DYNAMIC QWIDGETFROM DYNAMIC QWIDGETFROMPOINTER DYNAMIC QWIDGETITEM -DYNAMIC QWIDGETITEMFROM DYNAMIC QWIDGETITEMFROMPOINTER DYNAMIC QWINDOWSSTYLE -DYNAMIC QWINDOWSSTYLEFROM DYNAMIC QWINDOWSSTYLEFROMPOINTER DYNAMIC QWINDOWSTATECHANGEEVENT -DYNAMIC QWINDOWSTATECHANGEEVENTFROM DYNAMIC QWINDOWSTATECHANGEEVENTFROMPOINTER DYNAMIC QWIZARD -DYNAMIC QWIZARDFROM DYNAMIC QWIZARDFROMPOINTER DYNAMIC QWIZARDPAGE -DYNAMIC QWIZARDPAGEFROM DYNAMIC QWIZARDPAGEFROMPOINTER DYNAMIC Q__TR diff --git a/harbour/contrib/hbqt/qtgui/qth/QMainWindow.qth b/harbour/contrib/hbqt/qtgui/qth/QMainWindow.qth index d2528ee791..16041aba88 100644 --- a/harbour/contrib/hbqt/qtgui/qth/QMainWindow.qth +++ b/harbour/contrib/hbqt/qtgui/qth/QMainWindow.qth @@ -120,14 +120,14 @@ void removeToolBarBreak ( QToolBar * before ) bool restoreDockWidget ( QDockWidget * dockwidget ) bool restoreState ( const QByteArray & state, int version = 0 ) QByteArray saveState ( int version = 0 ) const -void setCentralWidget ( QWidget * widget ) +void setCentralWidget ( QWidget * widget ) [*D=1*] void setCorner ( Qt::Corner corner, Qt::DockWidgetArea area ) void setDockOptions ( DockOptions options ) void setDocumentMode ( bool enabled ) void setIconSize ( const QSize & iconSize ) -void setMenuBar ( QMenuBar * menuBar ) -void setMenuWidget ( QWidget * menuBar ) -void setStatusBar ( QStatusBar * statusbar ) +void setMenuBar ( QMenuBar * menuBar ) [*D=1*] +void setMenuWidget ( QWidget * menuBar ) [*D=1*] +void setStatusBar ( QStatusBar * statusbar ) [*D=1*] void setTabPosition ( Qt::DockWidgetAreas areas, QTabWidget::TabPosition tabPosition ) void setTabShape ( QTabWidget::TabShape tabShape ) void setToolButtonStyle ( Qt::ToolButtonStyle toolButtonStyle ) diff --git a/harbour/contrib/hbqt/qtnetwork/g/TQFtp.prg b/harbour/contrib/hbqt/qtnetwork/g/TQFtp.prg index 7184811839..334f08901a 100644 --- a/harbour/contrib/hbqt/qtnetwork/g/TQFtp.prg +++ b/harbour/contrib/hbqt/qtnetwork/g/TQFtp.prg @@ -98,9 +98,6 @@ FUNCTION QFtp( ... ) RETURN HB_QFtp():new( ... ) -FUNCTION QFtpFrom( ... ) - RETURN HB_QFtp():from( ... ) - FUNCTION QFtpFromPointer( ... ) RETURN HB_QFtp():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtnetwork/g/TQHttp.prg b/harbour/contrib/hbqt/qtnetwork/g/TQHttp.prg index eb0a7a9cc4..ba391f88c3 100644 --- a/harbour/contrib/hbqt/qtnetwork/g/TQHttp.prg +++ b/harbour/contrib/hbqt/qtnetwork/g/TQHttp.prg @@ -98,9 +98,6 @@ FUNCTION QHttp( ... ) RETURN HB_QHttp():new( ... ) -FUNCTION QHttpFrom( ... ) - RETURN HB_QHttp():from( ... ) - FUNCTION QHttpFromPointer( ... ) RETURN HB_QHttp():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtnetwork/g/TQHttpHeader.prg b/harbour/contrib/hbqt/qtnetwork/g/TQHttpHeader.prg index cd162bdc99..8ce30f2035 100644 --- a/harbour/contrib/hbqt/qtnetwork/g/TQHttpHeader.prg +++ b/harbour/contrib/hbqt/qtnetwork/g/TQHttpHeader.prg @@ -98,9 +98,6 @@ FUNCTION QHttpHeader( ... ) RETURN HB_QHttpHeader():new( ... ) -FUNCTION QHttpHeaderFrom( ... ) - RETURN HB_QHttpHeader():from( ... ) - FUNCTION QHttpHeaderFromPointer( ... ) RETURN HB_QHttpHeader():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtnetwork/g/TQHttpRequestHeader.prg b/harbour/contrib/hbqt/qtnetwork/g/TQHttpRequestHeader.prg index 772baa95af..769f8dfb04 100644 --- a/harbour/contrib/hbqt/qtnetwork/g/TQHttpRequestHeader.prg +++ b/harbour/contrib/hbqt/qtnetwork/g/TQHttpRequestHeader.prg @@ -98,9 +98,6 @@ FUNCTION QHttpRequestHeader( ... ) RETURN HB_QHttpRequestHeader():new( ... ) -FUNCTION QHttpRequestHeaderFrom( ... ) - RETURN HB_QHttpRequestHeader():from( ... ) - FUNCTION QHttpRequestHeaderFromPointer( ... ) RETURN HB_QHttpRequestHeader():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtnetwork/g/TQHttpResponseHeader.prg b/harbour/contrib/hbqt/qtnetwork/g/TQHttpResponseHeader.prg index e66b3e8a64..09a24f68cd 100644 --- a/harbour/contrib/hbqt/qtnetwork/g/TQHttpResponseHeader.prg +++ b/harbour/contrib/hbqt/qtnetwork/g/TQHttpResponseHeader.prg @@ -98,9 +98,6 @@ FUNCTION QHttpResponseHeader( ... ) RETURN HB_QHttpResponseHeader():new( ... ) -FUNCTION QHttpResponseHeaderFrom( ... ) - RETURN HB_QHttpResponseHeader():from( ... ) - FUNCTION QHttpResponseHeaderFromPointer( ... ) RETURN HB_QHttpResponseHeader():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtnetwork/g/TQNetworkRequest.prg b/harbour/contrib/hbqt/qtnetwork/g/TQNetworkRequest.prg index 7f7dd5afe4..2a18145a72 100644 --- a/harbour/contrib/hbqt/qtnetwork/g/TQNetworkRequest.prg +++ b/harbour/contrib/hbqt/qtnetwork/g/TQNetworkRequest.prg @@ -98,9 +98,6 @@ FUNCTION QNetworkRequest( ... ) RETURN HB_QNetworkRequest():new( ... ) -FUNCTION QNetworkRequestFrom( ... ) - RETURN HB_QNetworkRequest():from( ... ) - FUNCTION QNetworkRequestFromPointer( ... ) RETURN HB_QNetworkRequest():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtnetwork/hbqtnetwork.hbx b/harbour/contrib/hbqt/qtnetwork/hbqtnetwork.hbx index f8fc41a14c..19575e980e 100644 --- a/harbour/contrib/hbqt/qtnetwork/hbqtnetwork.hbx +++ b/harbour/contrib/hbqt/qtnetwork/hbqtnetwork.hbx @@ -35,22 +35,16 @@ DYNAMIC HB_QHTTPREQUESTHEADER DYNAMIC HB_QHTTPRESPONSEHEADER DYNAMIC HB_QNETWORKREQUEST DYNAMIC QFTP -DYNAMIC QFTPFROM DYNAMIC QFTPFROMPOINTER DYNAMIC QHTTP -DYNAMIC QHTTPFROM DYNAMIC QHTTPFROMPOINTER DYNAMIC QHTTPHEADER -DYNAMIC QHTTPHEADERFROM DYNAMIC QHTTPHEADERFROMPOINTER DYNAMIC QHTTPREQUESTHEADER -DYNAMIC QHTTPREQUESTHEADERFROM DYNAMIC QHTTPREQUESTHEADERFROMPOINTER DYNAMIC QHTTPRESPONSEHEADER -DYNAMIC QHTTPRESPONSEHEADERFROM DYNAMIC QHTTPRESPONSEHEADERFROMPOINTER DYNAMIC QNETWORKREQUEST -DYNAMIC QNETWORKREQUESTFROM DYNAMIC QNETWORKREQUESTFROMPOINTER #ifdef __HBEXTERN__HBQTNETWORK__REQUEST diff --git a/harbour/contrib/hbqt/qtuitools/g/TQUiLoader.prg b/harbour/contrib/hbqt/qtuitools/g/TQUiLoader.prg index 6fabfb5a22..0f0cea0505 100644 --- a/harbour/contrib/hbqt/qtuitools/g/TQUiLoader.prg +++ b/harbour/contrib/hbqt/qtuitools/g/TQUiLoader.prg @@ -98,9 +98,6 @@ FUNCTION QUiLoader( ... ) RETURN HB_QUiLoader():new( ... ) -FUNCTION QUiLoaderFrom( ... ) - RETURN HB_QUiLoader():from( ... ) - FUNCTION QUiLoaderFromPointer( ... ) RETURN HB_QUiLoader():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtuitools/hbqtuitools.hbx b/harbour/contrib/hbqt/qtuitools/hbqtuitools.hbx index cd318cd6b4..6325d63731 100644 --- a/harbour/contrib/hbqt/qtuitools/hbqtuitools.hbx +++ b/harbour/contrib/hbqt/qtuitools/hbqtuitools.hbx @@ -31,7 +31,6 @@ DYNAMIC HBQTUI DYNAMIC HB_QUILOADER DYNAMIC QUILOADER -DYNAMIC QUILOADERFROM DYNAMIC QUILOADERFROMPOINTER #ifdef __HBEXTERN__HBQTUITOOLS__REQUEST diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebFrame.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebFrame.prg index af80003ccb..a4a43071e4 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebFrame.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebFrame.prg @@ -98,9 +98,6 @@ FUNCTION QWebFrame( ... ) RETURN HB_QWebFrame():new( ... ) -FUNCTION QWebFrameFrom( ... ) - RETURN HB_QWebFrame():from( ... ) - FUNCTION QWebFrameFromPointer( ... ) RETURN HB_QWebFrame():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebHistory.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebHistory.prg index 2d7566fa8f..dd172ab304 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebHistory.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebHistory.prg @@ -98,9 +98,6 @@ FUNCTION QWebHistory( ... ) RETURN HB_QWebHistory():new( ... ) -FUNCTION QWebHistoryFrom( ... ) - RETURN HB_QWebHistory():from( ... ) - FUNCTION QWebHistoryFromPointer( ... ) RETURN HB_QWebHistory():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryInterface.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryInterface.prg index 92f4066ffb..5f172ac01d 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryInterface.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryInterface.prg @@ -98,9 +98,6 @@ FUNCTION QWebHistoryInterface( ... ) RETURN HB_QWebHistoryInterface():new( ... ) -FUNCTION QWebHistoryInterfaceFrom( ... ) - RETURN HB_QWebHistoryInterface():from( ... ) - FUNCTION QWebHistoryInterfaceFromPointer( ... ) RETURN HB_QWebHistoryInterface():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryItem.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryItem.prg index b342ed7222..229990fb84 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryItem.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebHistoryItem.prg @@ -98,9 +98,6 @@ FUNCTION QWebHistoryItem( ... ) RETURN HB_QWebHistoryItem():new( ... ) -FUNCTION QWebHistoryItemFrom( ... ) - RETURN HB_QWebHistoryItem():from( ... ) - FUNCTION QWebHistoryItemFromPointer( ... ) RETURN HB_QWebHistoryItem():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebHitTestResult.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebHitTestResult.prg index bf137d5edf..80ffbc4f96 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebHitTestResult.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebHitTestResult.prg @@ -98,9 +98,6 @@ FUNCTION QWebHitTestResult( ... ) RETURN HB_QWebHitTestResult():new( ... ) -FUNCTION QWebHitTestResultFrom( ... ) - RETURN HB_QWebHitTestResult():from( ... ) - FUNCTION QWebHitTestResultFromPointer( ... ) RETURN HB_QWebHitTestResult():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebPage.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebPage.prg index 50d156c33b..9fa0d657da 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebPage.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebPage.prg @@ -98,9 +98,6 @@ FUNCTION QWebPage( ... ) RETURN HB_QWebPage():new( ... ) -FUNCTION QWebPageFrom( ... ) - RETURN HB_QWebPage():from( ... ) - FUNCTION QWebPageFromPointer( ... ) RETURN HB_QWebPage():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebPluginFactory.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebPluginFactory.prg index eaa21348d8..8a53096fa5 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebPluginFactory.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebPluginFactory.prg @@ -98,9 +98,6 @@ FUNCTION QWebPluginFactory( ... ) RETURN HB_QWebPluginFactory():new( ... ) -FUNCTION QWebPluginFactoryFrom( ... ) - RETURN HB_QWebPluginFactory():from( ... ) - FUNCTION QWebPluginFactoryFromPointer( ... ) RETURN HB_QWebPluginFactory():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebSecurityOrigin.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebSecurityOrigin.prg index f61a15859c..3af850f30d 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebSecurityOrigin.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebSecurityOrigin.prg @@ -98,9 +98,6 @@ FUNCTION QWebSecurityOrigin( ... ) RETURN HB_QWebSecurityOrigin():new( ... ) -FUNCTION QWebSecurityOriginFrom( ... ) - RETURN HB_QWebSecurityOrigin():from( ... ) - FUNCTION QWebSecurityOriginFromPointer( ... ) RETURN HB_QWebSecurityOrigin():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebSettings.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebSettings.prg index 9e2549d420..91a2a40845 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebSettings.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebSettings.prg @@ -98,9 +98,6 @@ FUNCTION QWebSettings( ... ) RETURN HB_QWebSettings():new( ... ) -FUNCTION QWebSettingsFrom( ... ) - RETURN HB_QWebSettings():from( ... ) - FUNCTION QWebSettingsFromPointer( ... ) RETURN HB_QWebSettings():fromPointer( ... ) diff --git a/harbour/contrib/hbqt/qtwebkit/g/TQWebView.prg b/harbour/contrib/hbqt/qtwebkit/g/TQWebView.prg index 69fed14433..4c9ac9ae0d 100644 --- a/harbour/contrib/hbqt/qtwebkit/g/TQWebView.prg +++ b/harbour/contrib/hbqt/qtwebkit/g/TQWebView.prg @@ -98,9 +98,6 @@ FUNCTION QWebView( ... ) RETURN HB_QWebView():new( ... ) -FUNCTION QWebViewFrom( ... ) - RETURN HB_QWebView():from( ... ) - FUNCTION QWebViewFromPointer( ... ) RETURN HB_QWebView():fromPointer( ... )