diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 30f2d0292e..74d0e4f662 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,81 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-17 20:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * include/hbdefs.h + + Added HB_SIZE_SIGNED macro which enables signed HB_SIZE + types. It so far dangerous setting because it may generate + breakage without compiler warning, f.e. STUFF() GPFs + in hbtest after enabling it. Plus there is about 40-60 + new warnings shown, I'm out of ideas how to fix most + of them. + + * src/rtl/filesys.c + * Changed to pass LPDWORD to ReadFile()/WriteFile() + win32 branch, instead of *HB_SIZE. It caused warnings + for signed HB_SIZE. + ; Please review me. + + * ChangeLog + * Updated VxWorks notes in 2010-07-16 18:22 UTC+0200 Viktor Szakats + with missing hb_secondsCPU() support yet. + + * contrib/gtalleg/gtallegs.hbp + * contrib/hbcurl/hbcurls.hbp + * contrib/hbssl/hbssls.hbp + * contrib/hbtip/hbtipssl.hbp + + Added -hblib options to make it easy for tools to detect + target types. + + * contrib/gtalleg/gtalleg.c + ! Fixed C mode MSVC function pointer cast warning. + + * src/rtl/hbsocket.c + * Minor cosmetic. + + * contrib/hbqt/qtgui/QFormLayout.cpp + * contrib/hbqt/doc/en/*.txt + * Regenerated. + + * contrib/hbqt/generator/hbqtgen.prg + ! Fixed missing initialization for enums returned + by reference. An msvc warning was shown about them. + + ; TOFIX: I've reported similar warnings long ago with msvc. Anybody to fix them? + --- + hbqt_hbqplaintextedit.cpp + ...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated + ...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager' + hbqt_hbqsyntaxhighlighter.cpp + ...\qt\4.5.3\include\qtcore\../../src/corelib/global/qglobal.h(2078) : warning C4512: 'QForeachContainer' : assignment operator could not be generated + with + [ + T=QMap + ] + hbqt\hbqt_hbqsyntaxhighlighter.cpp(172) : see reference to class template instantiation 'QForeachContainer' being compiled + with + [ + T=QMap + ] + moc_hbqt_hbqplaintextedit.cpp + ...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated + ...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager' + QMimeData.cpp + ...\qt\4.5.3\include\qtcore\../../src/corelib/global/qglobal.h(2078) : warning C4512: 'QForeachContainer' : assignment operator could not be generated + with + [ + T=QList + ] + hbqt\qtcore\QMimeData.cpp(451) : see reference to class template instantiation 'QForeachContainer' being compiled + with + [ + T=QList + ] + HBQPlainTextEdit.cpp + ...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated + ...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager' + --- + 2010-07-17 17:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * ChangeLog * src/vm/dynlibhb.c @@ -263,6 +338,7 @@ but the latter stayed to be a zero length file. HB_USE_SHARELOCKS_OFF changes the situation a bit but still no good. + - hb_secondsCPU() support is missing. 2010-07-16 09:04 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/idebrowse.prg @@ -13310,7 +13386,7 @@ --- ../../../win_srv.c: In function 'hbwin_SrvFunction': ../../../win_srv.c:102:4: warning: passing argument 1 of 'RegisterServiceCtrlHandlerW' from incompatible pointer type - f:\devl\mingw-450\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsvc.h:234:40: note: expected 'LPCWSTR' but argument is of type 'char *' + ...\mingw-450\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsvc.h:234:40: note: expected 'LPCWSTR' but argument is of type 'char *' ../../../win_srv.c: In function 'HB_FUN_WIN_SERVICESTART': ../../../win_srv.c:279:21: warning: assignment from incompatible pointer type ../../../win_srv.c:280:21: warning: assignment from incompatible pointer type diff --git a/harbour/contrib/gtalleg/gtalleg.c b/harbour/contrib/gtalleg/gtalleg.c index f008fdcb0a..dc7418bc97 100644 --- a/harbour/contrib/gtalleg/gtalleg.c +++ b/harbour/contrib/gtalleg/gtalleg.c @@ -1177,4 +1177,7 @@ int _mangled_main( int argc, char * argv[] ) hb_vmInit( HB_TRUE ); return hb_vmQuit(); } -void * _mangled_main_address = ( void * ) _mangled_main; + +typedef int ( * _hballeg_main_t ) ( int argc, char * argv[] ); + +_hballeg_main_t _mangled_main_address = _mangled_main; diff --git a/harbour/contrib/gtalleg/gtallegs.hbp b/harbour/contrib/gtalleg/gtallegs.hbp index e712e53d19..eaea6c5dbb 100644 --- a/harbour/contrib/gtalleg/gtallegs.hbp +++ b/harbour/contrib/gtalleg/gtallegs.hbp @@ -2,6 +2,8 @@ # $Id$ # +-hblib + gtalleg.hbp -stop{!msvc} diff --git a/harbour/contrib/hbcurl/hbcurls.hbp b/harbour/contrib/hbcurl/hbcurls.hbp index ce400cf461..c4b4dbfd50 100644 --- a/harbour/contrib/hbcurl/hbcurls.hbp +++ b/harbour/contrib/hbcurl/hbcurls.hbp @@ -2,6 +2,8 @@ # $Id$ # +-hblib + -stop{!(win|wce)} hbcurl.hbp diff --git a/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt b/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt index c852560905..1570a70421 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/THBDbfModel.prg - C++ Wrappers : contrib/hbqt/qtcore/HBDbfModel.cpp + Prg source : contrib/hbqt/qtcore/THBDbfModel.prg + C++ wrappers : contrib/hbqt/qtcore/HBDbfModel.cpp Library : hbqtcore $SEEALSO$ QAbstractItemModel diff --git a/harbour/contrib/hbqt/doc/en/class_hbevents.txt b/harbour/contrib/hbqt/doc/en/class_hbevents.txt index 61ac25c609..ba202d80ed 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbevents.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbevents.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/THBEvents.prg - C++ Wrappers : contrib/hbqt/qtcore/HBEvents.cpp + Prg source : contrib/hbqt/qtcore/THBEvents.prg + C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt index 29cf8d8694..cd7c072c36 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg - C++ Wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp + Prg source : contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg + C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp Library : hbqtgui $SEEALSO$ QSyntaxHighlighter diff --git a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt index c333014c71..8752ee71cd 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/THBQTextBlockUserData.prg - C++ Wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp + Prg source : contrib/hbqt/qtgui/THBQTextBlockUserData.prg + C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_hbslots.txt b/harbour/contrib/hbqt/doc/en/class_hbslots.txt index 97381b4deb..3c3008272f 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbslots.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbslots.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/THBSlots.prg - C++ Wrappers : contrib/hbqt/qtcore/HBSlots.cpp + Prg source : contrib/hbqt/qtcore/THBSlots.prg + C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt index 310f59f5ce..01f66ba447 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -68,10 +68,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractButton.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractButton.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt index a66f11edb2..d52c06d8aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractItemDelegate.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractItemDelegate.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt index c9520e2229..45ceb49694 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -74,10 +74,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQAbstractItemModel.prg - C++ Wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp + Prg source : contrib/hbqt/qtcore/TQAbstractItemModel.prg + C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt index fed0270d8f..9e1053fa74 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -105,10 +105,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractItemView.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractItemView.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp Library : hbqtgui $SEEALSO$ QAbstractScrollArea diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt index 5314c25d4f..fe247fc06b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQAbstractListModel.prg - C++ Wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp + Prg source : contrib/hbqt/qtcore/TQAbstractListModel.prg + C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp Library : hbqtcore $SEEALSO$ QAbstractItemModel diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt index 3ec21b5387..cf67c0cb1a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractPrintDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractPrintDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt index 664ec4d0da..22c140e54f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractProxyModel.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractProxyModel.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp Library : hbqtgui $SEEALSO$ QAbstractItemModel diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt index b0cb55a864..48a0211162 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractScrollArea.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractScrollArea.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp Library : hbqtgui $SEEALSO$ QFrame diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt index 544ebb1b04..135f38845e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -66,10 +66,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractSlider.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractSlider.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt index 0669a0cd46..c486a1537a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -68,10 +68,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractSpinBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt index a831fcc520..781a86fadc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQAbstractTableModel.prg - C++ Wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp + Prg source : contrib/hbqt/qtcore/TQAbstractTableModel.prg + C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp Library : hbqtcore $SEEALSO$ QAbstractItemModel diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt index 5a1735a1e4..07c5590767 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp + Prg source : contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qaction.txt b/harbour/contrib/hbqt/doc/en/class_qaction.txt index 086e160103..5922b80265 100644 --- a/harbour/contrib/hbqt/doc/en/class_qaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qaction.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -92,10 +92,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQAction.prg - C++ Wrappers : contrib/hbqt/qtgui/QAction.cpp + Prg source : contrib/hbqt/qtgui/TQAction.prg + C++ wrappers : contrib/hbqt/qtgui/QAction.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt index 48da77ac34..fce7994ea0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQActionGroup.prg - C++ Wrappers : contrib/hbqt/qtgui/QActionGroup.cpp + Prg source : contrib/hbqt/qtgui/TQActionGroup.prg + C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qapplication.txt b/harbour/contrib/hbqt/doc/en/class_qapplication.txt index 07c2a169bc..d4292e836a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qapplication.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -116,10 +116,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQApplication.prg - C++ Wrappers : contrib/hbqt/qtgui/QApplication.cpp + Prg source : contrib/hbqt/qtgui/TQApplication.prg + C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp Library : hbqtgui $SEEALSO$ QCoreApplication diff --git a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt index b3b5a57c99..41e0a53943 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -58,10 +58,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQBitArray.prg - C++ Wrappers : contrib/hbqt/qtcore/QBitArray.cpp + Prg source : contrib/hbqt/qtcore/TQBitArray.prg + C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt index 0fe87b5c4a..d9b1973f2b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQBitmap.prg - C++ Wrappers : contrib/hbqt/qtgui/QBitmap.cpp + Prg source : contrib/hbqt/qtgui/TQBitmap.prg + C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp Library : hbqtgui $SEEALSO$ QPixmap diff --git a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt index 71a64c43f2..7ed93b2960 100644 --- a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -62,10 +62,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQBoxLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp + Prg source : contrib/hbqt/qtgui/TQBoxLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp Library : hbqtgui $SEEALSO$ QLayout diff --git a/harbour/contrib/hbqt/doc/en/class_qbrush.txt b/harbour/contrib/hbqt/doc/en/class_qbrush.txt index 8ed9a50ff6..1cdc0a34c7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbrush.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbrush.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -67,10 +67,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQBrush.prg - C++ Wrappers : contrib/hbqt/qtgui/QBrush.cpp + Prg source : contrib/hbqt/qtgui/TQBrush.prg + C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt index 007fe92b9e..e0a0eb1621 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQBuffer.prg - C++ Wrappers : contrib/hbqt/qtcore/QBuffer.cpp + Prg source : contrib/hbqt/qtcore/TQBuffer.prg + C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp Library : hbqtcore $SEEALSO$ QIODevice diff --git a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt index 0d53feba6e..3539b20d20 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -53,10 +53,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQButtonGroup.prg - C++ Wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp + Prg source : contrib/hbqt/qtgui/TQButtonGroup.prg + C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt index 5d537f8f80..be6aa9d231 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -92,10 +92,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQByteArray.prg - C++ Wrappers : contrib/hbqt/qtcore/QByteArray.cpp + Prg source : contrib/hbqt/qtcore/TQByteArray.prg + C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt index f9d47fcd78..0f9e47619c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -80,10 +80,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQCalendarWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp + Prg source : contrib/hbqt/qtgui/TQCalendarWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qchar.txt b/harbour/contrib/hbqt/doc/en/class_qchar.txt index 94719dcc2a..56be063569 100644 --- a/harbour/contrib/hbqt/doc/en/class_qchar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qchar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -70,10 +70,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQChar.prg - C++ Wrappers : contrib/hbqt/qtcore/QChar.cpp + Prg source : contrib/hbqt/qtcore/TQChar.prg + C++ wrappers : contrib/hbqt/qtcore/QChar.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt index 73474f6d04..8adc6ef965 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQCheckBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QCheckBox.cpp + Prg source : contrib/hbqt/qtgui/TQCheckBox.prg + C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp Library : hbqtgui $SEEALSO$ QAbstractButton diff --git a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt index cdb7bab7a3..10ca99c937 100644 --- a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQClipboard.prg - C++ Wrappers : contrib/hbqt/qtgui/QClipboard.cpp + Prg source : contrib/hbqt/qtgui/TQClipboard.prg + C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qcolor.txt b/harbour/contrib/hbqt/doc/en/class_qcolor.txt index f4904746b6..6a82e0c78d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolor.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -100,10 +100,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQColor.prg - C++ Wrappers : contrib/hbqt/qtgui/QColor.cpp + Prg source : contrib/hbqt/qtgui/TQColor.prg + C++ wrappers : contrib/hbqt/qtgui/QColor.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt index 03030aa893..1e9ab096ca 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -57,10 +57,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQColorDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QColorDialog.cpp + Prg source : contrib/hbqt/qtgui/TQColorDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt index f3ae3e7530..640a4a8bc6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -101,10 +101,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQComboBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QComboBox.cpp + Prg source : contrib/hbqt/qtgui/TQComboBox.prg + C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt index ff59888b80..4cd08815f9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQCommandLinkButton.prg - C++ Wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp + Prg source : contrib/hbqt/qtgui/TQCommandLinkButton.prg + C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp Library : hbqtgui $SEEALSO$ QPushButton diff --git a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt index 2482ea4523..bb60dfbfbc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQCompleter.prg - C++ Wrappers : contrib/hbqt/qtgui/QCompleter.cpp + Prg source : contrib/hbqt/qtgui/TQCompleter.prg + C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt index bebfb65905..98d55729e2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQConicalGradient.prg - C++ Wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp + Prg source : contrib/hbqt/qtgui/TQConicalGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp Library : hbqtgui $SEEALSO$ QGradient diff --git a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt index 91bf2c3b23..dcffa56c9f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQContextMenuEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp + Prg source : contrib/hbqt/qtgui/TQContextMenuEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp Library : hbqtgui $SEEALSO$ QInputEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt index 9168c1129d..b6110631f0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -81,10 +81,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQCoreApplication.prg - C++ Wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp + Prg source : contrib/hbqt/qtcore/TQCoreApplication.prg + C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qcursor.txt b/harbour/contrib/hbqt/doc/en/class_qcursor.txt index a910a5aa3c..2840341174 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcursor.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQCursor.prg - C++ Wrappers : contrib/hbqt/qtgui/QCursor.cpp + Prg source : contrib/hbqt/qtgui/TQCursor.prg + C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt index 04c11e824f..9712cec480 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQDataStream.prg - C++ Wrappers : contrib/hbqt/qtcore/QDataStream.cpp + Prg source : contrib/hbqt/qtcore/TQDataStream.prg + C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdate.txt b/harbour/contrib/hbqt/doc/en/class_qdate.txt index be535bfa47..9c3ba46cb7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdate.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -58,10 +58,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQDate.prg - C++ Wrappers : contrib/hbqt/qtcore/QDate.cpp + Prg source : contrib/hbqt/qtcore/TQDate.prg + C++ wrappers : contrib/hbqt/qtcore/QDate.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt index 1769ffa586..48534639f9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQDateTime.prg - C++ Wrappers : contrib/hbqt/qtcore/QDateTime.cpp + Prg source : contrib/hbqt/qtcore/TQDateTime.prg + C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt index d0ab76e200..9f19c55801 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -86,10 +86,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDateTimeEdit.prg - C++ Wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp + Prg source : contrib/hbqt/qtgui/TQDateTimeEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp Library : hbqtgui $SEEALSO$ QAbstractSpinBox diff --git a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt index abe9fdd1ed..3eef75f7dc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -54,10 +54,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDesktopWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp + Prg source : contrib/hbqt/qtgui/TQDesktopWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qdial.txt b/harbour/contrib/hbqt/doc/en/class_qdial.txt index 5eeb7b0998..9ce08ab09c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdial.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdial.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDial.prg - C++ Wrappers : contrib/hbqt/qtgui/QDial.cpp + Prg source : contrib/hbqt/qtgui/TQDial.prg + C++ wrappers : contrib/hbqt/qtgui/QDial.cpp Library : hbqtgui $SEEALSO$ QAbstractSlider diff --git a/harbour/contrib/hbqt/doc/en/class_qdialog.txt b/harbour/contrib/hbqt/doc/en/class_qdialog.txt index d850bea2fa..91d3d6d04f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QDialog.cpp + Prg source : contrib/hbqt/qtgui/TQDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qdir.txt b/harbour/contrib/hbqt/doc/en/class_qdir.txt index 37866a941a..211b2d847c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdir.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdir.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -91,10 +91,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQDir.prg - C++ Wrappers : contrib/hbqt/qtcore/QDir.cpp + Prg source : contrib/hbqt/qtcore/TQDir.prg + C++ wrappers : contrib/hbqt/qtcore/QDir.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt index 937bcbda56..65677effba 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -79,10 +79,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDirModel.prg - C++ Wrappers : contrib/hbqt/qtgui/QDirModel.cpp + Prg source : contrib/hbqt/qtgui/TQDirModel.prg + C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp Library : hbqtgui $SEEALSO$ QAbstractItemModel diff --git a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt index 4a92187647..8119a13f41 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -54,10 +54,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDockWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QDockWidget.cpp + Prg source : contrib/hbqt/qtgui/TQDockWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt index 46413fb6be..34431ecc5f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -60,10 +60,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDoubleSpinBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp + Prg source : contrib/hbqt/qtgui/TQDoubleSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp Library : hbqtgui $SEEALSO$ QAbstractSpinBox diff --git a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt index 2e9faed7fa..26cab1ebc6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDragMoveEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp + Prg source : contrib/hbqt/qtgui/TQDragMoveEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp Library : hbqtgui $SEEALSO$ QDropEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt index bedddc1e6d..56d1765ac1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQDropEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QDropEvent.cpp + Prg source : contrib/hbqt/qtgui/TQDropEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt index 5ffbc57326..2c5a1e21a7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQErrorMessage.prg - C++ Wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp + Prg source : contrib/hbqt/qtgui/TQErrorMessage.prg + C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qevent.txt b/harbour/contrib/hbqt/doc/en/class_qevent.txt index 31b95d66a5..7e2af6ab8b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQEvent.prg - C++ Wrappers : contrib/hbqt/qtcore/QEvent.cpp + Prg source : contrib/hbqt/qtcore/TQEvent.prg + C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt index 8c259b712f..9877570f6b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt +++ b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQEventLoop.prg - C++ Wrappers : contrib/hbqt/qtcore/QEventLoop.cpp + Prg source : contrib/hbqt/qtcore/TQEventLoop.prg + C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qfile.txt b/harbour/contrib/hbqt/doc/en/class_qfile.txt index 957426cde9..2a4c274c07 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfile.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfile.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -76,10 +76,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQFile.prg - C++ Wrappers : contrib/hbqt/qtcore/QFile.cpp + Prg source : contrib/hbqt/qtcore/TQFile.prg + C++ wrappers : contrib/hbqt/qtcore/QFile.cpp Library : hbqtcore $SEEALSO$ QIODevice diff --git a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt index 61ff9c0d04..de4e458d28 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -88,10 +88,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFileDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QFileDialog.cpp + Prg source : contrib/hbqt/qtgui/TQFileDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt index 9148cae8b2..3eaba06889 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFileIconProvider.prg - C++ Wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp + Prg source : contrib/hbqt/qtgui/TQFileIconProvider.prg + C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt index 0c15bb1f3e..8310e8d6e6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -86,10 +86,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQFileInfo.prg - C++ Wrappers : contrib/hbqt/qtcore/QFileInfo.cpp + Prg source : contrib/hbqt/qtcore/TQFileInfo.prg + C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt index 2bb0cc31f1..abee6de4d9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFileSystemModel.prg - C++ Wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp + Prg source : contrib/hbqt/qtgui/TQFileSystemModel.prg + C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp Library : hbqtgui $SEEALSO$ QAbstractItemModel diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt index 98496264db..282c822166 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFocusEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp + Prg source : contrib/hbqt/qtgui/TQFocusEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt index be9a2ffbec..19a116c9be 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFocusFrame.prg - C++ Wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp + Prg source : contrib/hbqt/qtgui/TQFocusFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qfont.txt b/harbour/contrib/hbqt/doc/en/class_qfont.txt index 0f1b1b0b4a..4f276de193 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfont.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfont.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -107,10 +107,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFont.prg - C++ Wrappers : contrib/hbqt/qtgui/QFont.cpp + Prg source : contrib/hbqt/qtgui/TQFont.prg + C++ wrappers : contrib/hbqt/qtgui/QFont.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt index fe8736f07b..44d5abd338 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFontComboBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp + Prg source : contrib/hbqt/qtgui/TQFontComboBox.prg + C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp Library : hbqtgui $SEEALSO$ QComboBox diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt index 255fed0bbf..dd95003231 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -65,10 +65,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFontDatabase.prg - C++ Wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp + Prg source : contrib/hbqt/qtgui/TQFontDatabase.prg + C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt index 9bc7dca819..0d5d567d2a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -54,10 +54,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFontDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QFontDialog.cpp + Prg source : contrib/hbqt/qtgui/TQFontDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt index 0cf65e1d15..f9357c2d2f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -54,10 +54,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFontInfo.prg - C++ Wrappers : contrib/hbqt/qtgui/QFontInfo.cpp + Prg source : contrib/hbqt/qtgui/TQFontInfo.prg + C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt index 08f6b2ca36..421f2fc78e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFontMetrics.prg - C++ Wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp + Prg source : contrib/hbqt/qtgui/TQFontMetrics.prg + C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt index fe5accb6f1..c4156cf5c3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFontMetricsF.prg - C++ Wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp + Prg source : contrib/hbqt/qtgui/TQFontMetricsF.prg + C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt index cde54ed3fe..eab57bbb60 100644 --- a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -78,10 +78,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFormLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QFormLayout.cpp + Prg source : contrib/hbqt/qtgui/TQFormLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp Library : hbqtgui $SEEALSO$ QLayout diff --git a/harbour/contrib/hbqt/doc/en/class_qframe.txt b/harbour/contrib/hbqt/doc/en/class_qframe.txt index 900aa0c538..855b21eab9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qframe.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQFrame.prg - C++ Wrappers : contrib/hbqt/qtgui/QFrame.cpp + Prg source : contrib/hbqt/qtgui/TQFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qftp.txt b/harbour/contrib/hbqt/doc/en/class_qftp.txt index c9a669f42f..f59be5c9be 100644 --- a/harbour/contrib/hbqt/doc/en/class_qftp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qftp.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -68,10 +68,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtnetwork/TQFtp.prg - C++ Wrappers : contrib/hbqt/qtnetwork/QFtp.cpp + Prg source : contrib/hbqt/qtnetwork/TQFtp.prg + C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp Library : hbqtnetwork $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qgradient.txt b/harbour/contrib/hbqt/doc/en/class_qgradient.txt index 9bf52474a2..3f41268cac 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgradient.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQGradient.prg - C++ Wrappers : contrib/hbqt/qtgui/QGradient.cpp + Prg source : contrib/hbqt/qtgui/TQGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt index d2af4cb11a..f8bf61da4f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -68,10 +68,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQGridLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QGridLayout.cpp + Prg source : contrib/hbqt/qtgui/TQGridLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp Library : hbqtgui $SEEALSO$ QLayout diff --git a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt index 44ea768fd4..9116123cb7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQGroupBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QGroupBox.cpp + Prg source : contrib/hbqt/qtgui/TQGroupBox.prg + C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt index f27882524e..34de2d095f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -99,10 +99,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQHeaderView.prg - C++ Wrappers : contrib/hbqt/qtgui/QHeaderView.cpp + Prg source : contrib/hbqt/qtgui/TQHeaderView.prg + C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp Library : hbqtgui $SEEALSO$ QAbstractItemView diff --git a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt index 152aabac4f..c6f155a62a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQHelpEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp + Prg source : contrib/hbqt/qtgui/TQHelpEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttp.txt b/harbour/contrib/hbqt/doc/en/class_qhttp.txt index 07290a0686..46c8ea60b1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttp.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -66,10 +66,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtnetwork/TQHttp.prg - C++ Wrappers : contrib/hbqt/qtnetwork/QHttp.cpp + Prg source : contrib/hbqt/qtnetwork/TQHttp.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp Library : hbqtnetwork $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt index 00ff8be339..2492cb5127 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -60,10 +60,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtnetwork/TQHttpHeader.prg - C++ Wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp + Prg source : contrib/hbqt/qtnetwork/TQHttpHeader.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp Library : hbqtnetwork $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt index 8ae60d0167..b1c54da581 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg - C++ Wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp + Prg source : contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp Library : hbqtnetwork $SEEALSO$ QHttpHeader diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt index e32de0a025..ac654cc9cd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg - C++ Wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp + Prg source : contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp Library : hbqtnetwork $SEEALSO$ QHttpHeader diff --git a/harbour/contrib/hbqt/doc/en/class_qicon.txt b/harbour/contrib/hbqt/doc/en/class_qicon.txt index a2c810faeb..a44183bca1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qicon.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQIcon.prg - C++ Wrappers : contrib/hbqt/qtgui/QIcon.cpp + Prg source : contrib/hbqt/qtgui/TQIcon.prg + C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qimage.txt b/harbour/contrib/hbqt/doc/en/class_qimage.txt index a48484d58c..caacfed11b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimage.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -96,10 +96,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQImage.prg - C++ Wrappers : contrib/hbqt/qtgui/QImage.cpp + Prg source : contrib/hbqt/qtgui/TQImage.prg + C++ wrappers : contrib/hbqt/qtgui/QImage.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt index 4b0b92f301..e8902a4f07 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -81,10 +81,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQImageReader.prg - C++ Wrappers : contrib/hbqt/qtgui/QImageReader.cpp + Prg source : contrib/hbqt/qtgui/TQImageReader.prg + C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt index a4b407ff80..8f843ddc7b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -61,10 +61,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQImageWriter.prg - C++ Wrappers : contrib/hbqt/qtgui/QImageWriter.cpp + Prg source : contrib/hbqt/qtgui/TQImageWriter.prg + C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt index 6daa44960e..76dc80e03a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -86,10 +86,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQInputDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QInputDialog.cpp + Prg source : contrib/hbqt/qtgui/TQInputDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt index 7ff3f9bb15..a8a6cebbb2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQInputEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QInputEvent.cpp + Prg source : contrib/hbqt/qtgui/TQInputEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt index 70e19b5ec4..d57c599559 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQInputMethodEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp + Prg source : contrib/hbqt/qtgui/TQInputMethodEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt index c1b9ecd1e7..fd0ff68746 100644 --- a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -75,10 +75,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQIODevice.prg - C++ Wrappers : contrib/hbqt/qtcore/QIODevice.cpp + Prg source : contrib/hbqt/qtcore/TQIODevice.prg + C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt index 4d468d946b..9df4fd82f3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQItemSelection.prg - C++ Wrappers : contrib/hbqt/qtgui/QItemSelection.cpp + Prg source : contrib/hbqt/qtgui/TQItemSelection.prg + C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp Library : hbqtgui $SEEALSO$ QList diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt index eafb70e048..c60eac1587 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -57,10 +57,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQItemSelectionModel.prg - C++ Wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp + Prg source : contrib/hbqt/qtgui/TQItemSelectionModel.prg + C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt index 889a4065b7..ebd377a041 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQKeyEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp + Prg source : contrib/hbqt/qtgui/TQKeyEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp Library : hbqtgui $SEEALSO$ QInputEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt index 1beff9bf8f..6366b45d78 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQKeySequence.prg - C++ Wrappers : contrib/hbqt/qtgui/QKeySequence.cpp + Prg source : contrib/hbqt/qtgui/TQKeySequence.prg + C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlabel.txt b/harbour/contrib/hbqt/doc/en/class_qlabel.txt index 46230a4a95..8b69a47394 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlabel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlabel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQLabel.prg - C++ Wrappers : contrib/hbqt/qtgui/QLabel.cpp + Prg source : contrib/hbqt/qtgui/TQLabel.prg + C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp Library : hbqtgui $SEEALSO$ QFrame diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt index ea50210877..89b01d84b4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQLatin1Char.prg - C++ Wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp + Prg source : contrib/hbqt/qtcore/TQLatin1Char.prg + C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt index 639225430b..6b96f4f109 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQLatin1String.prg - C++ Wrappers : contrib/hbqt/qtcore/QLatin1String.cpp + Prg source : contrib/hbqt/qtcore/TQLatin1String.prg + C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayout.txt b/harbour/contrib/hbqt/doc/en/class_qlayout.txt index 9fb5a30fe5..2e976a224c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QLayout.cpp + Prg source : contrib/hbqt/qtgui/TQLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp Library : hbqtgui $SEEALSO$ QObject, QLayoutItem diff --git a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt index c19e5a852b..7d3d5ba1ed 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -59,10 +59,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQLayoutItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp + Prg source : contrib/hbqt/qtgui/TQLayoutItem.prg + C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt index f74304fc2c..b8df4a2f90 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -61,10 +61,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQLCDNumber.prg - C++ Wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp + Prg source : contrib/hbqt/qtgui/TQLCDNumber.prg + C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp Library : hbqtgui $SEEALSO$ QFrame diff --git a/harbour/contrib/hbqt/doc/en/class_qline.txt b/harbour/contrib/hbqt/doc/en/class_qline.txt index e0b658175f..2d739a61c3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qline.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -61,10 +61,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQLine.prg - C++ Wrappers : contrib/hbqt/qtcore/QLine.cpp + Prg source : contrib/hbqt/qtcore/TQLine.prg + C++ wrappers : contrib/hbqt/qtcore/QLine.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt index 8861280b58..8b3fa07b62 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQLinearGradient.prg - C++ Wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp + Prg source : contrib/hbqt/qtgui/TQLinearGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp Library : hbqtgui $SEEALSO$ QGradient diff --git a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt index 40d8c55d04..fbde2415aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -97,10 +97,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQLineEdit.prg - C++ Wrappers : contrib/hbqt/qtgui/QLineEdit.cpp + Prg source : contrib/hbqt/qtgui/TQLineEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qlinef.txt b/harbour/contrib/hbqt/doc/en/class_qlinef.txt index 7a0112f9bc..74fbc969ba 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlinef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlinef.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -65,10 +65,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQLineF.prg - C++ Wrappers : contrib/hbqt/qtcore/QLineF.cpp + Prg source : contrib/hbqt/qtcore/TQLineF.prg + C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlist.txt b/harbour/contrib/hbqt/doc/en/class_qlist.txt index ef29733bc3..ab446b58d7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlist.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -82,10 +82,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQList.prg - C++ Wrappers : contrib/hbqt/qtcore/QList.cpp + Prg source : contrib/hbqt/qtcore/TQList.prg + C++ wrappers : contrib/hbqt/qtcore/QList.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistview.txt b/harbour/contrib/hbqt/doc/en/class_qlistview.txt index fec1f0a1a3..89d1506b98 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistview.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQListView.prg - C++ Wrappers : contrib/hbqt/qtgui/QListView.cpp + Prg source : contrib/hbqt/qtgui/TQListView.prg + C++ wrappers : contrib/hbqt/qtgui/QListView.cpp Library : hbqtgui $SEEALSO$ QAbstractItemView diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt index ce8146ccad..6aa770080f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -74,10 +74,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQListWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QListWidget.cpp + Prg source : contrib/hbqt/qtgui/TQListWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp Library : hbqtgui $SEEALSO$ QListView diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt index dabdd7e3d8..679c071574 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -76,10 +76,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQListWidgetItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp + Prg source : contrib/hbqt/qtgui/TQListWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qlocale.txt b/harbour/contrib/hbqt/doc/en/class_qlocale.txt index 338fe9d12b..dfc013fac6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlocale.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlocale.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -95,10 +95,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQLocale.prg - C++ Wrappers : contrib/hbqt/qtcore/QLocale.cpp + Prg source : contrib/hbqt/qtcore/TQLocale.prg + C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt index 4dc4f5e293..4fb51a2a08 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -91,10 +91,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMainWindow.prg - C++ Wrappers : contrib/hbqt/qtgui/QMainWindow.cpp + Prg source : contrib/hbqt/qtgui/TQMainWindow.prg + C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt index 3089bfd391..ba09627033 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -66,10 +66,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMatrix.prg - C++ Wrappers : contrib/hbqt/qtgui/QMatrix.cpp + Prg source : contrib/hbqt/qtgui/TQMatrix.prg + C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt index 9581848121..2827e8bfa1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -68,10 +68,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMdiArea.prg - C++ Wrappers : contrib/hbqt/qtgui/QMdiArea.cpp + Prg source : contrib/hbqt/qtgui/TQMdiArea.prg + C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp Library : hbqtgui $SEEALSO$ QAbstractScrollArea diff --git a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt index 57c9c0d125..aea85f47aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMdiSubWindow.prg - C++ Wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp + Prg source : contrib/hbqt/qtgui/TQMdiSubWindow.prg + C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qmenu.txt b/harbour/contrib/hbqt/doc/en/class_qmenu.txt index 3050f0691a..bb3dc93d41 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenu.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenu.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -73,10 +73,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMenu.prg - C++ Wrappers : contrib/hbqt/qtgui/QMenu.cpp + Prg source : contrib/hbqt/qtgui/TQMenu.prg + C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt index 3f5de904b8..41a1a2ed90 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMenuBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QMenuBar.cpp + Prg source : contrib/hbqt/qtgui/TQMenuBar.prg + C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt index e90c620b6c..b707c01d0c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -81,10 +81,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMessageBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QMessageBox.cpp + Prg source : contrib/hbqt/qtgui/TQMessageBox.prg + C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt index 66d0c625bf..69820bde6a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -63,10 +63,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQMimeData.prg - C++ Wrappers : contrib/hbqt/qtcore/QMimeData.cpp + Prg source : contrib/hbqt/qtcore/TQMimeData.prg + C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt index 9a8ca383e2..e6b3f3fed2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -50,10 +50,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQModelIndex.prg - C++ Wrappers : contrib/hbqt/qtcore/QModelIndex.cpp + Prg source : contrib/hbqt/qtcore/TQModelIndex.prg + C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt index 9638f3c92f..bd54c321e3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMouseEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp + Prg source : contrib/hbqt/qtgui/TQMouseEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp Library : hbqtgui $SEEALSO$ QInputEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt index 1b8f5bd222..f27d397c02 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMoveEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp + Prg source : contrib/hbqt/qtgui/TQMoveEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qmovie.txt b/harbour/contrib/hbqt/doc/en/class_qmovie.txt index ae3f3c02b3..e5612a6b3c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmovie.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmovie.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -70,10 +70,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQMovie.prg - C++ Wrappers : contrib/hbqt/qtgui/QMovie.cpp + Prg source : contrib/hbqt/qtgui/TQMovie.prg + C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt index b1f055b342..ce408aeb83 100644 --- a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt +++ b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtnetwork/TQNetworkRequest.prg - C++ Wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp + Prg source : contrib/hbqt/qtnetwork/TQNetworkRequest.prg + C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp Library : hbqtnetwork $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qobject.txt b/harbour/contrib/hbqt/doc/en/class_qobject.txt index af7a66ce6c..ef7f284bb2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qobject.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -70,10 +70,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQObject.prg - C++ Wrappers : contrib/hbqt/qtcore/QObject.cpp + Prg source : contrib/hbqt/qtcore/TQObject.prg + C++ wrappers : contrib/hbqt/qtcore/QObject.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt index 99eed91b59..2ae984607a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -50,10 +50,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPageSetupDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp + Prg source : contrib/hbqt/qtgui/TQPageSetupDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt index 14de80ff00..b81aaa4d31 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -54,10 +54,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPaintDevice.prg - C++ Wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp + Prg source : contrib/hbqt/qtgui/TQPaintDevice.prg + C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt index 9dae9b0e1d..6d4cd52570 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -66,10 +66,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPaintEngine.prg - C++ Wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp + Prg source : contrib/hbqt/qtgui/TQPaintEngine.prg + C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainter.txt b/harbour/contrib/hbqt/doc/en/class_qpainter.txt index 5715154acd..1c225312b5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -224,10 +224,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPainter.prg - C++ Wrappers : contrib/hbqt/qtgui/QPainter.cpp + Prg source : contrib/hbqt/qtgui/TQPainter.prg + C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt index 2f37e23fd0..4f0e21b7ea 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -92,10 +92,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPainterPath.prg - C++ Wrappers : contrib/hbqt/qtgui/QPainterPath.cpp + Prg source : contrib/hbqt/qtgui/TQPainterPath.prg + C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt index 4b6b11d7c2..a7075ca204 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPaintEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp + Prg source : contrib/hbqt/qtgui/TQPaintEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qpalette.txt b/harbour/contrib/hbqt/doc/en/class_qpalette.txt index c859098072..ab1554ece3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpalette.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpalette.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -85,10 +85,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPalette.prg - C++ Wrappers : contrib/hbqt/qtgui/QPalette.cpp + Prg source : contrib/hbqt/qtgui/TQPalette.prg + C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpen.txt b/harbour/contrib/hbqt/doc/en/class_qpen.txt index 4bb19521fc..876fc9bf08 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpen.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -73,10 +73,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPen.prg - C++ Wrappers : contrib/hbqt/qtgui/QPen.cpp + Prg source : contrib/hbqt/qtgui/TQPen.prg + C++ wrappers : contrib/hbqt/qtgui/QPen.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpicture.txt b/harbour/contrib/hbqt/doc/en/class_qpicture.txt index 7f82b0433e..4e850365f3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpicture.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpicture.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPicture.prg - C++ Wrappers : contrib/hbqt/qtgui/QPicture.cpp + Prg source : contrib/hbqt/qtgui/TQPicture.prg + C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp Library : hbqtgui $SEEALSO$ QPaintDevice diff --git a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt index aa9b9d79f1..e1951442bb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -74,10 +74,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPixmap.prg - C++ Wrappers : contrib/hbqt/qtgui/QPixmap.cpp + Prg source : contrib/hbqt/qtgui/TQPixmap.prg + C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp Library : hbqtgui $SEEALSO$ QPaintDevice diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt index e79d0ff5c1..330abedf1f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp + Prg source : contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp Library : hbqtgui $SEEALSO$ QAbstractTextDocumentLayout diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt index b022cb954d..a0b2f727ac 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -99,10 +99,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPlainTextEdit.prg - C++ Wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp + Prg source : contrib/hbqt/qtgui/TQPlainTextEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp Library : hbqtgui $SEEALSO$ QAbstractScrollArea diff --git a/harbour/contrib/hbqt/doc/en/class_qpoint.txt b/harbour/contrib/hbqt/doc/en/class_qpoint.txt index f16f631469..fca53a7834 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpoint.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpoint.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -53,10 +53,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQPoint.prg - C++ Wrappers : contrib/hbqt/qtcore/QPoint.cpp + Prg source : contrib/hbqt/qtcore/TQPoint.prg + C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpointf.txt b/harbour/contrib/hbqt/doc/en/class_qpointf.txt index 0898cb3bd0..ab317d0310 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpointf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpointf.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -53,10 +53,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQPointF.prg - C++ Wrappers : contrib/hbqt/qtcore/QPointF.cpp + Prg source : contrib/hbqt/qtcore/TQPointF.prg + C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt index 87adc839b4..5fd4adc332 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPolygon.prg - C++ Wrappers : contrib/hbqt/qtgui/QPolygon.cpp + Prg source : contrib/hbqt/qtgui/TQPolygon.prg + C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt index c4d1691d3e..5b2d0d7fa4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPolygonF.prg - C++ Wrappers : contrib/hbqt/qtgui/QPolygonF.cpp + Prg source : contrib/hbqt/qtgui/TQPolygonF.prg + C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt index a915335e29..6701a77b7b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPrintDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp + Prg source : contrib/hbqt/qtgui/TQPrintDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp Library : hbqtgui $SEEALSO$ QAbstractPrintDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt index 441da9023e..c5f3d9acb4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPrintEngine.prg - C++ Wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp + Prg source : contrib/hbqt/qtgui/TQPrintEngine.prg + C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprinter.txt b/harbour/contrib/hbqt/doc/en/class_qprinter.txt index a35d3a79d9..be4cb97fe5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprinter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprinter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -98,10 +98,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPrinter.prg - C++ Wrappers : contrib/hbqt/qtgui/QPrinter.cpp + Prg source : contrib/hbqt/qtgui/TQPrinter.prg + C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp Library : hbqtgui $SEEALSO$ QPaintDevice diff --git a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt index 408b6cb6b1..18daa744ba 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPrintPreviewDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp + Prg source : contrib/hbqt/qtgui/TQPrintPreviewDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qprocess.txt b/harbour/contrib/hbqt/doc/en/class_qprocess.txt index b9168a6c07..fedde33181 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprocess.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprocess.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -75,10 +75,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQProcess.prg - C++ Wrappers : contrib/hbqt/qtcore/QProcess.cpp + Prg source : contrib/hbqt/qtcore/TQProcess.prg + C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp Library : hbqtcore $SEEALSO$ QIODevice diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt index 8374ca6d2a..ccfa5b8bf1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -63,10 +63,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQProgressBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QProgressBar.cpp + Prg source : contrib/hbqt/qtgui/TQProgressBar.prg + C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt index 5b61e103ff..8d52975e1e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -66,10 +66,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQProgressDialog.prg - C++ Wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp + Prg source : contrib/hbqt/qtgui/TQProgressDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt index c0686d5fd7..4ec1840da4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQPushButton.prg - C++ Wrappers : contrib/hbqt/qtgui/QPushButton.cpp + Prg source : contrib/hbqt/qtgui/TQPushButton.prg + C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp Library : hbqtgui $SEEALSO$ QAbstractButton diff --git a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt index aa801b7ef5..c7f0c04ac8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQRadialGradient.prg - C++ Wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp + Prg source : contrib/hbqt/qtgui/TQRadialGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp Library : hbqtgui $SEEALSO$ QGradient diff --git a/harbour/contrib/hbqt/doc/en/class_qrect.txt b/harbour/contrib/hbqt/doc/en/class_qrect.txt index 0a96058960..56ed3e2b25 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrect.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -103,10 +103,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQRect.prg - C++ Wrappers : contrib/hbqt/qtcore/QRect.cpp + Prg source : contrib/hbqt/qtcore/TQRect.prg + C++ wrappers : contrib/hbqt/qtcore/QRect.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qrectf.txt b/harbour/contrib/hbqt/doc/en/class_qrectf.txt index 22651321b8..b358eef94e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrectf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrectf.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -104,10 +104,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQRectF.prg - C++ Wrappers : contrib/hbqt/qtcore/QRectF.cpp + Prg source : contrib/hbqt/qtcore/TQRectF.prg + C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qregexp.txt b/harbour/contrib/hbqt/doc/en/class_qregexp.txt index 6859b542a7..02111ff075 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregexp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregexp.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -61,10 +61,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQRegExp.prg - C++ Wrappers : contrib/hbqt/qtcore/QRegExp.cpp + Prg source : contrib/hbqt/qtcore/TQRegExp.prg + C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qregion.txt b/harbour/contrib/hbqt/doc/en/class_qregion.txt index c969f606b4..6d82c54d9b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregion.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregion.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -59,10 +59,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQRegion.prg - C++ Wrappers : contrib/hbqt/qtgui/QRegion.cpp + Prg source : contrib/hbqt/qtgui/TQRegion.prg + C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt index 82e0d65297..e42ffc52cf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQResizeEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp + Prg source : contrib/hbqt/qtgui/TQResizeEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp Library : hbqtgui $SEEALSO$ QEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qresource.txt b/harbour/contrib/hbqt/doc/en/class_qresource.txt index 38a6df4916..a63e30c533 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresource.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresource.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQResource.prg - C++ Wrappers : contrib/hbqt/qtcore/QResource.cpp + Prg source : contrib/hbqt/qtcore/TQResource.prg + C++ wrappers : contrib/hbqt/qtcore/QResource.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt index 6c5a05037d..f84f2d9c08 100644 --- a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQScrollArea.prg - C++ Wrappers : contrib/hbqt/qtgui/QScrollArea.cpp + Prg source : contrib/hbqt/qtgui/TQScrollArea.prg + C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp Library : hbqtgui $SEEALSO$ QAbstractScrollArea diff --git a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt index f7d865dae0..eecedd5021 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -58,10 +58,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSessionManager.prg - C++ Wrappers : contrib/hbqt/qtgui/QSessionManager.cpp + Prg source : contrib/hbqt/qtgui/TQSessionManager.prg + C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qsettings.txt b/harbour/contrib/hbqt/doc/en/class_qsettings.txt index ba375a1072..0f8c2b454a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsettings.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsettings.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -73,10 +73,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQSettings.prg - C++ Wrappers : contrib/hbqt/qtcore/QSettings.cpp + Prg source : contrib/hbqt/qtcore/TQSettings.prg + C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt index b11f2c293c..d2ec59864e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -53,10 +53,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQSignalMapper.prg - C++ Wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp + Prg source : contrib/hbqt/qtcore/TQSignalMapper.prg + C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qsize.txt b/harbour/contrib/hbqt/doc/en/class_qsize.txt index 1ab0108efb..4c16159c63 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsize.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsize.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -57,10 +57,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQSize.prg - C++ Wrappers : contrib/hbqt/qtcore/QSize.cpp + Prg source : contrib/hbqt/qtcore/TQSize.prg + C++ wrappers : contrib/hbqt/qtcore/QSize.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizef.txt b/harbour/contrib/hbqt/doc/en/class_qsizef.txt index 3bf2793005..b168c56690 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizef.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -57,10 +57,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQSizeF.prg - C++ Wrappers : contrib/hbqt/qtcore/QSizeF.cpp + Prg source : contrib/hbqt/qtcore/TQSizeF.prg + C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt index e95ea4d254..af0021a763 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSizePolicy.prg - C++ Wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp + Prg source : contrib/hbqt/qtgui/TQSizePolicy.prg + C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qslider.txt b/harbour/contrib/hbqt/doc/en/class_qslider.txt index 7cf52f3e1e..76dd6e3adf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qslider.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSlider.prg - C++ Wrappers : contrib/hbqt/qtgui/QSlider.cpp + Prg source : contrib/hbqt/qtgui/TQSlider.prg + C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp Library : hbqtgui $SEEALSO$ QAbstractSlider diff --git a/harbour/contrib/hbqt/doc/en/class_qsound.txt b/harbour/contrib/hbqt/doc/en/class_qsound.txt index 7b18b89267..d9fe7672fb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsound.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsound.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSound.prg - C++ Wrappers : contrib/hbqt/qtgui/QSound.cpp + Prg source : contrib/hbqt/qtgui/TQSound.prg + C++ wrappers : contrib/hbqt/qtgui/QSound.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt index 61ad60da86..9237dfda62 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSpacerItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp + Prg source : contrib/hbqt/qtgui/TQSpacerItem.prg + C++ wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp Library : hbqtgui $SEEALSO$ QLayoutItem diff --git a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt index 1bbcd6688f..e37b0f39c9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSpinBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QSpinBox.cpp + Prg source : contrib/hbqt/qtgui/TQSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp Library : hbqtgui $SEEALSO$ QAbstractSpinBox diff --git a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt index c1998a260d..92997f334b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSplashScreen.prg - C++ Wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp + Prg source : contrib/hbqt/qtgui/TQSplashScreen.prg + C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt index 21e20b9616..b2e91ba75f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -63,10 +63,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSplitter.prg - C++ Wrappers : contrib/hbqt/qtgui/QSplitter.cpp + Prg source : contrib/hbqt/qtgui/TQSplitter.prg + C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp Library : hbqtgui $SEEALSO$ QFrame diff --git a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt index b6fa59cefb..a9596b9e6e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStackedWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp + Prg source : contrib/hbqt/qtgui/TQStackedWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp Library : hbqtgui $SEEALSO$ QFrame diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt index 54b798b1de..3510ecbfd8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -111,10 +111,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStandardItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QStandardItem.cpp + Prg source : contrib/hbqt/qtgui/TQStandardItem.prg + C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt index 07b9cd547c..ea2efe7c35 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -70,10 +70,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStandardItemModel.prg - C++ Wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp + Prg source : contrib/hbqt/qtgui/TQStandardItemModel.prg + C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp Library : hbqtgui $SEEALSO$ QAbstractItemModeL diff --git a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt index dd5d0ae977..0c8f9c8892 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStatusBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QStatusBar.cpp + Prg source : contrib/hbqt/qtgui/TQStatusBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt index 4cc2c061c5..b25cfab23b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -76,10 +76,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQStringList.prg - C++ Wrappers : contrib/hbqt/qtcore/QStringList.cpp + Prg source : contrib/hbqt/qtcore/TQStringList.prg + C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp Library : hbqtcore $SEEALSO$ QList diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt index dcaf9e4074..9a9a61935f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -50,10 +50,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStringListModel.prg - C++ Wrappers : contrib/hbqt/qtgui/QStringListModel.cpp + Prg source : contrib/hbqt/qtgui/TQStringListModel.prg + C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp Library : hbqtgui $SEEALSO$ QAbstractListModel diff --git a/harbour/contrib/hbqt/doc/en/class_qstyle.txt b/harbour/contrib/hbqt/doc/en/class_qstyle.txt index dcac1e8eef..16fd089caf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyle.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyle.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyle.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyle.cpp + Prg source : contrib/hbqt/qtgui/TQStyle.prg + C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt index e5c851685c..ca37f8b468 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyledItemDelegate.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp + Prg source : contrib/hbqt/qtgui/TQStyledItemDelegate.prg + C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt index b91e13aaff..dc5d879459 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleFactory.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp + Prg source : contrib/hbqt/qtgui/TQStyleFactory.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt index 936c61b061..c49cd59a57 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -50,10 +50,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOption.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOption.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOption.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt index 2a14d970ad..e23c6f744e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionButton.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionButton.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt index fa999b82c0..b8ad110bae 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionComboBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionComboBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt index fa4542725a..9eeec986af 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionComplex.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionComplex.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt index a6602d1488..618999bd2a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt index 1d3554b1c0..0e9818e22f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt index 3b60d55e59..42b107281f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionFrame.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp Library : hbqtgui $SEEALSO$ qStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt index 54138bd37f..b20c7365cc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp Library : hbqtgui $SEEALSO$ QStyleOptionComplex diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt index 003703c1c2..72e8e6f8c9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionHeader.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionHeader.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt index c75172cb95..d7c9d35134 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt index a9aea20ee0..398fada992 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt index 8d55586b71..14a6e9dbd3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp Library : hbqtgui $SEEALSO$ QStyleOptionComplex diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt index f3349331ca..1002cd3324 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -54,10 +54,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionSlider.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionSlider.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp Library : hbqtgui $SEEALSO$ QStyleOptionComplex diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt index f1a63c02ee..78771c2a97 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp Library : hbqtgui $SEEALSO$ QStyleOptionComplex diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt index b663def12b..a8811f0e3b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionTab.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionTab.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt index fc743497e6..cf905eafeb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt index 480ea6e977..1edc6285e7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt index a1d8ee6276..61d06f4a49 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp Library : hbqtgui $SEEALSO$ QStyleOptionComplex diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt index 919f494a67..4beb89710b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionToolBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionToolBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt index 01504ea7df..a0177f00a8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionToolBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionToolBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt index 36d7aa6df2..702094d878 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -50,10 +50,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionToolButton.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionToolButton.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp Library : hbqtgui $SEEALSO$ QStyleOptionComplex diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt index b72f46a8fe..6e2a7ae68f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStyleOptionViewItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp + Prg source : contrib/hbqt/qtgui/TQStyleOptionViewItem.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp Library : hbqtgui $SEEALSO$ QStyleOption diff --git a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt index 9cee48da3f..a05ebd9855 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -50,10 +50,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQStylePainter.prg - C++ Wrappers : contrib/hbqt/qtgui/QStylePainter.cpp + Prg source : contrib/hbqt/qtgui/TQStylePainter.prg + C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp Library : hbqtgui $SEEALSO$ QPainter diff --git a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt index 23b36b00d1..51d4898c28 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSyntaxHighlighter.prg - C++ Wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp + Prg source : contrib/hbqt/qtgui/TQSyntaxHighlighter.prg + C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt index 29a48ecf08..cc81e51f5c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQSystemTrayIcon.prg - C++ Wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp + Prg source : contrib/hbqt/qtgui/TQSystemTrayIcon.prg + C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt index e4c809ac34..5fddd3a2ae 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -86,10 +86,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTabBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QTabBar.cpp + Prg source : contrib/hbqt/qtgui/TQTabBar.prg + C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qtableview.txt b/harbour/contrib/hbqt/doc/en/class_qtableview.txt index fc1739af40..3c87cc74c7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtableview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtableview.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -84,10 +84,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTableView.prg - C++ Wrappers : contrib/hbqt/qtgui/QTableView.cpp + Prg source : contrib/hbqt/qtgui/TQTableView.prg + C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp Library : hbqtgui $SEEALSO$ QAbstractItemView diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt index 76ff1cb37e..cf4f64fa21 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -91,10 +91,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTableWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QTableWidget.cpp + Prg source : contrib/hbqt/qtgui/TQTableWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp Library : hbqtgui $SEEALSO$ QTableView diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt index 4e20eaec11..e4e0787c87 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -76,10 +76,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTableWidgetItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp + Prg source : contrib/hbqt/qtgui/TQTableWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt index 5ea7431d75..434bae72d9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg - C++ Wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp + Prg source : contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg + C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt index ac2e2949f0..7cca2007d4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -83,10 +83,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTabWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QTabWidget.cpp + Prg source : contrib/hbqt/qtgui/TQTabWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt index 1038213b7d..1c7c5778b3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -67,10 +67,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextBlock.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextBlock.cpp + Prg source : contrib/hbqt/qtgui/TQTextBlock.prg + C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt index 17568c628b..f627d53ee9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -61,10 +61,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextBlockFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextBlockFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp Library : hbqtgui $SEEALSO$ QTextFormat diff --git a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt index 4276812950..be645dc581 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -53,10 +53,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTextBoundaryFinder.prg - C++ Wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp + Prg source : contrib/hbqt/qtcore/TQTextBoundaryFinder.prg + C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt index dd92e79aa8..2044f55ffe 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -62,10 +62,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextBrowser.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp + Prg source : contrib/hbqt/qtgui/TQTextBrowser.prg + C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp Library : hbqtgui $SEEALSO$ QTextEdit diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt index 9c584eddd2..8cda734628 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -89,10 +89,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextCharFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextCharFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp Library : hbqtgui $SEEALSO$ QTextFormat diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt index 59b154d87e..00137a0165 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTextCodec.prg - C++ Wrappers : contrib/hbqt/qtcore/QTextCodec.cpp + Prg source : contrib/hbqt/qtcore/TQTextCodec.prg + C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt index d0161a913e..3aa9de2a0b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -105,10 +105,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextCursor.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextCursor.cpp + Prg source : contrib/hbqt/qtgui/TQTextCursor.prg + C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt index 1b8325a5f1..db2a80a44d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -43,10 +43,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTextDecoder.prg - C++ Wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp + Prg source : contrib/hbqt/qtcore/TQTextDecoder.prg + C++ wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt index d2d534e7c5..51104fb5b0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -108,10 +108,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextDocument.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextDocument.cpp + Prg source : contrib/hbqt/qtgui/TQTextDocument.prg + C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt index 13574438ed..c0af9c6ae3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextDocumentFragment.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp + Prg source : contrib/hbqt/qtgui/TQTextDocumentFragment.prg + C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt index d172f9a562..b223ab260c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextDocumentWriter.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp + Prg source : contrib/hbqt/qtgui/TQTextDocumentWriter.prg + C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt index 0dd661a511..47556795d2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -123,10 +123,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextEdit.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextEdit.cpp + Prg source : contrib/hbqt/qtgui/TQTextEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp Library : hbqtgui $SEEALSO$ QAbstractScrollArea diff --git a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt index 09ad8aefc0..5c92eacd88 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTextEncoder.prg - C++ Wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp + Prg source : contrib/hbqt/qtcore/TQTextEncoder.prg + C++ wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt index 0695dd90d6..515afe31e0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -83,10 +83,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt index c47934204c..512ff7fab0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextFragment.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextFragment.cpp + Prg source : contrib/hbqt/qtgui/TQTextFragment.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt index 9997215d88..128160abfe 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextFrame.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextFrame.cpp + Prg source : contrib/hbqt/qtgui/TQTextFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp Library : hbqtgui $SEEALSO$ QTextObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt index bf2c7cefe8..9379377c85 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextFrameFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextFrameFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp Library : hbqtgui $SEEALSO$ QTextFormat diff --git a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt index 11030c35e8..a55c9f3332 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -49,10 +49,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextImageFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextImageFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp Library : hbqtgui $SEEALSO$ QTextCharFormat diff --git a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt index 2fd914190d..bbd8a7d324 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextInlineObject.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp + Prg source : contrib/hbqt/qtgui/TQTextInlineObject.prg + C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt index 405a89540b..95e41a6fe4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -48,10 +48,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextItem.cpp + Prg source : contrib/hbqt/qtgui/TQTextItem.prg + C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt index e6179ea518..c8ebad5281 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -71,10 +71,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextLayout.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextLayout.cpp + Prg source : contrib/hbqt/qtgui/TQTextLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt index 0cbefe395d..88d42bf7c8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -45,10 +45,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextLength.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextLength.cpp + Prg source : contrib/hbqt/qtgui/TQTextLength.prg + C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextline.txt b/harbour/contrib/hbqt/doc/en/class_qtextline.txt index 8739d95ea4..a83b6826b2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextline.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -63,10 +63,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextLine.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextLine.cpp + Prg source : contrib/hbqt/qtgui/TQTextLine.prg + C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt index 9e54277e88..df296005da 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextList.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextList.cpp + Prg source : contrib/hbqt/qtgui/TQTextList.prg + C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp Library : hbqtgui $SEEALSO$ QTextBlockGroup diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt index 23170c31b0..9c8414ac9f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -47,10 +47,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextListFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextListFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp Library : hbqtgui $SEEALSO$ QTextFormat diff --git a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt index e8b93c6e6d..0b30e8486f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextObject.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextObject.cpp + Prg source : contrib/hbqt/qtgui/TQTextObject.prg + C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt index d388467aba..baac7ad03e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextOption.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextOption.cpp + Prg source : contrib/hbqt/qtgui/TQTextOption.prg + C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt index c37f6c1a7f..5d411cff20 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -79,10 +79,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTextStream.prg - C++ Wrappers : contrib/hbqt/qtcore/QTextStream.cpp + Prg source : contrib/hbqt/qtcore/TQTextStream.prg + C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt index 688a357258..839ec5c67b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -53,10 +53,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTextTableFormat.prg - C++ Wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp + Prg source : contrib/hbqt/qtgui/TQTextTableFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp Library : hbqtgui $SEEALSO$ QTextFrameFormat diff --git a/harbour/contrib/hbqt/doc/en/class_qthread.txt b/harbour/contrib/hbqt/doc/en/class_qthread.txt index e6a3dd02a5..1fe4153533 100644 --- a/harbour/contrib/hbqt/doc/en/class_qthread.txt +++ b/harbour/contrib/hbqt/doc/en/class_qthread.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQThread.prg - C++ Wrappers : contrib/hbqt/qtcore/QThread.cpp + Prg source : contrib/hbqt/qtcore/TQThread.prg + C++ wrappers : contrib/hbqt/qtcore/QThread.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtime.txt b/harbour/contrib/hbqt/doc/en/class_qtime.txt index 1ab961c80d..4e1ece0f94 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtime.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -57,10 +57,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTime.prg - C++ Wrappers : contrib/hbqt/qtcore/QTime.cpp + Prg source : contrib/hbqt/qtcore/TQTime.prg + C++ wrappers : contrib/hbqt/qtcore/QTime.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtimer.txt b/harbour/contrib/hbqt/doc/en/class_qtimer.txt index ea79cc21f6..4ffa582665 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtimer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtimer.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -52,10 +52,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTimer.prg - C++ Wrappers : contrib/hbqt/qtcore/QTimer.cpp + Prg source : contrib/hbqt/qtcore/TQTimer.prg + C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt index c3458daaab..6b75b3c8f5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -70,10 +70,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQToolBar.prg - C++ Wrappers : contrib/hbqt/qtgui/QToolBar.cpp + Prg source : contrib/hbqt/qtgui/TQToolBar.prg + C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt index f9c3fd06c6..6a7cacf954 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -62,10 +62,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQToolBox.prg - C++ Wrappers : contrib/hbqt/qtgui/QToolBox.cpp + Prg source : contrib/hbqt/qtgui/TQToolBox.prg + C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp Library : hbqtgui $SEEALSO$ QFrame diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt index e36e8c72ca..86188b44cf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -55,10 +55,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQToolButton.prg - C++ Wrappers : contrib/hbqt/qtgui/QToolButton.cpp + Prg source : contrib/hbqt/qtgui/TQToolButton.prg + C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp Library : hbqtgui $SEEALSO$ QAbstractButton diff --git a/harbour/contrib/hbqt/doc/en/class_qtransform.txt b/harbour/contrib/hbqt/doc/en/class_qtransform.txt index 9d7f6f0d2f..49381ea6d8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtransform.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtransform.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -81,10 +81,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTransform.prg - C++ Wrappers : contrib/hbqt/qtgui/QTransform.cpp + Prg source : contrib/hbqt/qtgui/TQTransform.prg + C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt index 88009a10d6..114cf090c6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQTranslator.prg - C++ Wrappers : contrib/hbqt/qtcore/QTranslator.cpp + Prg source : contrib/hbqt/qtcore/TQTranslator.prg + C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt index 26d5c14a5a..2e57f74ac4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -91,10 +91,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTreeView.prg - C++ Wrappers : contrib/hbqt/qtgui/QTreeView.cpp + Prg source : contrib/hbqt/qtgui/TQTreeView.prg + C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp Library : hbqtgui $SEEALSO$ QAbstractItemView diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt index b72664f9f6..b288a598b8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -81,10 +81,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTreeWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp + Prg source : contrib/hbqt/qtgui/TQTreeWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp Library : hbqtgui $SEEALSO$ QTreeView diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt index 65b11d6671..a4ffb9fece 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -91,10 +91,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQTreeWidgetItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp + Prg source : contrib/hbqt/qtgui/TQTreeWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp Library : hbqtgui $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_quiloader.txt b/harbour/contrib/hbqt/doc/en/class_quiloader.txt index a613bffed7..831e61b77f 100644 --- a/harbour/contrib/hbqt/doc/en/class_quiloader.txt +++ b/harbour/contrib/hbqt/doc/en/class_quiloader.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -56,10 +56,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQUiLoader.prg - C++ Wrappers : contrib/hbqt/qtcore/QUiLoader.cpp + Prg source : contrib/hbqt/qtcore/TQUiLoader.prg + C++ wrappers : contrib/hbqt/qtcore/QUiLoader.cpp Library : hbqtcore $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qurl.txt b/harbour/contrib/hbqt/doc/en/class_qurl.txt index 4dde94ddfb..bfb81bde3f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qurl.txt +++ b/harbour/contrib/hbqt/doc/en/class_qurl.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -108,10 +108,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQUrl.prg - C++ Wrappers : contrib/hbqt/qtcore/QUrl.cpp + Prg source : contrib/hbqt/qtcore/TQUrl.prg + C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp Library : hbqtcore $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt index 5480ed4218..18ea5640b0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQValidator.prg - C++ Wrappers : contrib/hbqt/qtgui/QValidator.cpp + Prg source : contrib/hbqt/qtgui/TQValidator.prg + C++ wrappers : contrib/hbqt/qtgui/QValidator.cpp Library : hbqtgui $SEEALSO$ QObject diff --git a/harbour/contrib/hbqt/doc/en/class_qvariant.txt b/harbour/contrib/hbqt/doc/en/class_qvariant.txt index 94178df480..e68f2c91aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvariant.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvariant.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -79,10 +79,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtcore/TQVariant.prg - C++ Wrappers : contrib/hbqt/qtcore/QVariant.cpp + Prg source : contrib/hbqt/qtcore/TQVariant.prg + C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp Library : hbqtcore $SEEALSO$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt index 05cfbffac4..3154a30905 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -51,10 +51,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQWheelEvent.prg - C++ Wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp + Prg source : contrib/hbqt/qtgui/TQWheelEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp Library : hbqtgui $SEEALSO$ QInputEvent diff --git a/harbour/contrib/hbqt/doc/en/class_qwidget.txt b/harbour/contrib/hbqt/doc/en/class_qwidget.txt index 229dc055a7..1b068a9b8f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidget.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -238,10 +238,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQWidget.prg - C++ Wrappers : contrib/hbqt/qtgui/QWidget.cpp + Prg source : contrib/hbqt/qtgui/TQWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp Library : hbqtgui $SEEALSO$ QObject, QPaintDevice diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt index 9230cc4f15..f31a97e564 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -46,10 +46,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQWidgetAction.prg - C++ Wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp + Prg source : contrib/hbqt/qtgui/TQWidgetAction.prg + C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp Library : hbqtgui $SEEALSO$ QAction diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt index 3552aeee36..38da965d40 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -44,10 +44,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQWidgetItem.prg - C++ Wrappers : contrib/hbqt/qtgui/QWidgetItem.cpp + Prg source : contrib/hbqt/qtgui/TQWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QWidgetItem.cpp Library : hbqtgui $SEEALSO$ QLayoutItem diff --git a/harbour/contrib/hbqt/doc/en/class_qwizard.txt b/harbour/contrib/hbqt/doc/en/class_qwizard.txt index fd95dd40db..a8763c0afa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizard.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -77,10 +77,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQWizard.prg - C++ Wrappers : contrib/hbqt/qtgui/QWizard.cpp + Prg source : contrib/hbqt/qtgui/TQWizard.prg + C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp Library : hbqtgui $SEEALSO$ QDialog diff --git a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt index 0c241e7b92..4214df813c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt @@ -1,5 +1,5 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+ + * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ * Please do not modify this document as it is subject to change in future. * Pritpal Bedi */ @@ -59,10 +59,10 @@ $PLATFORMS$ Windows, Linux, MacOS, OS2 $VERSION$ - 4.5.3 + 4.5 or upper $FILES$ - Prg Source : contrib/hbqt/qtgui/TQWizardPage.prg - C++ Wrappers : contrib/hbqt/qtgui/QWizardPage.cpp + Prg source : contrib/hbqt/qtgui/TQWizardPage.prg + C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp Library : hbqtgui $SEEALSO$ QWidget diff --git a/harbour/contrib/hbqt/generator/hbqtgen.prg b/harbour/contrib/hbqt/generator/hbqtgen.prg index c44714456a..198922726b 100644 --- a/harbour/contrib/hbqt/generator/hbqtgen.prg +++ b/harbour/contrib/hbqt/generator/hbqtgen.prg @@ -1030,7 +1030,7 @@ STATIC FUNCTION ParseProto( cProto, cWidget, txt_, doc_, aEnum, func_, lList, fB aA[ PRT_DOC ] := 'c' + cDocNM CASE ( '::' $ aA[ PRT_CAST ] ) .and. aA[ PRT_L_FAR ] - aadd( aPre, { aA[ PRT_CAST ] + ' i' + cDocNM + ';', nHBIdx, 'i' + cDocNM, 'hb_storni' } ) + aadd( aPre, { aA[ PRT_CAST ] + ' i' + cDocNM + ' = ( ' + aA[ PRT_CAST ] + ' ) 0;', nHBIdx, 'i' + cDocNM, 'hb_storni' } ) aA[ PRT_BODY ] := '&i' + cDocNM aA[ PRT_DOC ] := '@n' + cDocNM diff --git a/harbour/contrib/hbqt/qtgui/QFormLayout.cpp b/harbour/contrib/hbqt/qtgui/QFormLayout.cpp index 4033717c7f..74358778fc 100644 --- a/harbour/contrib/hbqt/qtgui/QFormLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QFormLayout.cpp @@ -274,7 +274,7 @@ HB_FUNC( QT_QFORMLAYOUT_GETITEMPOSITION ) { QFormLayout * p = hbqt_par_QFormLayout( 1 ); int iRowPtr = 0; - QFormLayout::ItemRole iRolePtr; + QFormLayout::ItemRole iRolePtr = ( QFormLayout::ItemRole ) 0; if( p ) ( p )->getItemPosition( hb_parni( 2 ), &iRowPtr, &iRolePtr ); @@ -294,7 +294,7 @@ HB_FUNC( QT_QFORMLAYOUT_GETLAYOUTPOSITION ) { QFormLayout * p = hbqt_par_QFormLayout( 1 ); int iRowPtr = 0; - QFormLayout::ItemRole iRolePtr; + QFormLayout::ItemRole iRolePtr = ( QFormLayout::ItemRole ) 0; if( p ) ( p )->getLayoutPosition( hbqt_par_QLayout( 2 ), &iRowPtr, &iRolePtr ); @@ -314,7 +314,7 @@ HB_FUNC( QT_QFORMLAYOUT_GETWIDGETPOSITION ) { QFormLayout * p = hbqt_par_QFormLayout( 1 ); int iRowPtr = 0; - QFormLayout::ItemRole iRolePtr; + QFormLayout::ItemRole iRolePtr = ( QFormLayout::ItemRole ) 0; if( p ) ( p )->getWidgetPosition( hbqt_par_QWidget( 2 ), &iRowPtr, &iRolePtr ); diff --git a/harbour/contrib/hbssl/hbssls.hbp b/harbour/contrib/hbssl/hbssls.hbp index 5a73be3f35..7f06f21047 100644 --- a/harbour/contrib/hbssl/hbssls.hbp +++ b/harbour/contrib/hbssl/hbssls.hbp @@ -2,6 +2,8 @@ # $Id$ # +-hblib + -stop{!(win|wce)} hbssl.hbp diff --git a/harbour/contrib/hbtip/hbtipssl.hbp b/harbour/contrib/hbtip/hbtipssl.hbp index ec8fdccc62..ad1062a45e 100644 --- a/harbour/contrib/hbtip/hbtipssl.hbp +++ b/harbour/contrib/hbtip/hbtipssl.hbp @@ -2,6 +2,8 @@ # $Id$ # +-hblib + hbtip.hbp -o${hb_name} diff --git a/harbour/include/hbdefs.h b/harbour/include/hbdefs.h index 77a181b564..a5f5744440 100644 --- a/harbour/include/hbdefs.h +++ b/harbour/include/hbdefs.h @@ -253,11 +253,19 @@ typedef unsigned int HB_UINT; /* Harbour size type */ #if defined( HB_OS_WIN_64 ) - typedef HB_ULONGLONG HB_SIZE; /* TODO: Currently 'unsigned', to be changed 'signed' */ +# if defined( HB_SIZE_SIGNED ) + typedef HB_LONGLONG HB_SIZE; +# else + typedef HB_ULONGLONG HB_SIZE; /* TODO: Currently 'unsigned', to be changed 'signed' */ +# endif typedef HB_LONGLONG HB_ISIZ; /* TODO: Change to HB_SIZE, after HB_SIZE has been converted to signed type. TEMPORARY type. */ typedef HB_ULONGLONG HB_USIZ; /* TEMPORARY type. Do not use it. */ #else - typedef HB_ULONG HB_SIZE; /* TODO: Currently 'unsigned', to be changed 'signed' */ +# if defined( HB_SIZE_SIGNED ) + typedef HB_LONG HB_SIZE; +# else + typedef HB_ULONG HB_SIZE; /* TODO: Currently 'unsigned', to be changed 'signed' */ +# endif typedef HB_LONG HB_ISIZ; /* TODO: Change to HB_SIZE, after HB_SIZE has been converted to signed type. TEMPORARY type. */ typedef HB_ULONG HB_USIZ; /* TEMPORARY type. Do not use it. */ #endif @@ -645,9 +653,17 @@ typedef HB_U32 HB_FATTR; /* maximum index size */ #if defined( HB_OS_WIN_64 ) -# define HB_SIZE_MAX ULONGLONG_MAX +# if defined( HB_SIZE_SIGNED ) +# define HB_SIZE_MAX LONGLONG_MAX +# else +# define HB_SIZE_MAX ULONGLONG_MAX +# endif #else -# define HB_SIZE_MAX ULONG_MAX +# if defined( HB_SIZE_SIGNED ) +# define HB_SIZE_MAX LONG_MAX +# else +# define HB_SIZE_MAX ULONG_MAX +# endif #endif /* maximum length of double number in decimal representation: @@ -1460,17 +1476,17 @@ typedef HB_U32 HB_FATTR; #undef HB_PCODE_MKLONGLONG #undef HB_PCODE_MKULONGLONG #undef HB_DBL_LIM_INT64 - #define UINT64_MAXDBL ( (( double ) UINT32_MAX + 1.0) * \ - (( double ) UINT32_MAX + 1.0) - 1.0 ) + #define UINT64_MAXDBL ( ( ( double ) UINT32_MAX + 1.0 ) * \ + ( ( double ) UINT32_MAX + 1.0 ) - 1.0 ) #define HB_GET_LE_INT64( p ) hb_get_le_int64( ( HB_BYTE * ) ( p ) ) #define HB_GET_LE_UINT64( p ) hb_get_le_uint64( ( HB_BYTE * ) ( p ) ) #define HB_PUT_LE_UINT64( p, d ) hb_put_le_uint64( ( HB_BYTE * ) ( p ), \ ( double ) ( d ) ) - #define HB_PCODE_MKLONGLONG( p ) (( double ) HB_GET_LE_INT64( p )) - #define HB_PCODE_MKULONGLONG( p ) (( double ) HB_GET_LE_UINT64( p )) - #define HB_DBL_LIM_INT64(d) ( (HB_MAXDBL) -UINT64_MAXDBL / 2 - 1 <= \ - (HB_MAXDBL) (d) && (HB_MAXDBL) (d) <= \ - (HB_MAXDBL) UINT64_MAXDBL / 2 ) + #define HB_PCODE_MKLONGLONG( p ) ( ( double ) HB_GET_LE_INT64( p ) ) + #define HB_PCODE_MKULONGLONG( p ) ( ( double ) HB_GET_LE_UINT64( p ) ) + #define HB_DBL_LIM_INT64( d ) ( ( HB_MAXDBL ) -UINT64_MAXDBL / 2 - 1 <= \ + ( HB_MAXDBL ) ( d ) && ( HB_MAXDBL ) ( d ) <= \ + ( HB_MAXDBL ) UINT64_MAXDBL / 2 ) #endif #define HB_MACRO2STRING( macro ) HB_MACRO2STRING_( macro ) diff --git a/harbour/src/rtl/filesys.c b/harbour/src/rtl/filesys.c index 50674f7d64..0afa05f023 100644 --- a/harbour/src/rtl/filesys.c +++ b/harbour/src/rtl/filesys.c @@ -1776,12 +1776,14 @@ HB_SIZE hb_fsReadAt( HB_FHANDLE hFileHandle, void * pBuff, HB_SIZE nCount, HB_FO # else if( hb_iswinnt() ) { + DWORD dwRead = 0; OVERLAPPED Overlapped; memset( &Overlapped, 0, sizeof( Overlapped ) ); Overlapped.Offset = ( DWORD ) ( nOffset & 0xFFFFFFFF ); Overlapped.OffsetHigh = ( DWORD ) ( nOffset >> 32 ); hb_fsSetIOError( ReadFile( DosToWinHandle( hFileHandle ), - pBuff, nCount, &nRead, &Overlapped ) != 0, 0 ); + pBuff, ( DWORD ) nCount, &dwRead, &Overlapped ) != 0, 0 ); + nRead = dwRead; } else { @@ -1795,8 +1797,12 @@ HB_SIZE hb_fsReadAt( HB_FHANDLE hFileHandle, void * pBuff, HB_SIZE nCount, HB_FO if( nPos == ( HB_FOFFSET ) INVALID_SET_FILE_POINTER ) hb_fsSetIOError( HB_FALSE, 0 ); else + { + DWORD dwRead = 0; hb_fsSetIOError( ReadFile( DosToWinHandle( hFileHandle ), - pBuff, nCount, &nRead, NULL ) != 0, 0 ); + pBuff, ( DWORD ) nCount, &dwRead, NULL ) != 0, 0 ); + nRead = dwRead; + } } # endif @@ -1901,12 +1907,14 @@ HB_SIZE hb_fsWriteAt( HB_FHANDLE hFileHandle, const void * pBuff, HB_SIZE nCount # else if( hb_iswinnt() ) { + DWORD dwWritten = 0; OVERLAPPED Overlapped; memset( &Overlapped, 0, sizeof( Overlapped ) ); Overlapped.Offset = ( DWORD ) ( nOffset & 0xFFFFFFFF ); Overlapped.OffsetHigh = ( DWORD ) ( nOffset >> 32 ); hb_fsSetIOError( WriteFile( DosToWinHandle( hFileHandle ), - pBuff, nCount, &nWritten, &Overlapped ) != 0, 0 ); + pBuff, nCount, &dwWritten, &Overlapped ) != 0, 0 ); + nWritten = dwWritten; } else { @@ -1920,8 +1928,12 @@ HB_SIZE hb_fsWriteAt( HB_FHANDLE hFileHandle, const void * pBuff, HB_SIZE nCount if( nPos == ( HB_FOFFSET ) INVALID_SET_FILE_POINTER ) hb_fsSetIOError( HB_FALSE, 0 ); else + { + DWORD dwWritten = 0; hb_fsSetIOError( WriteFile( DosToWinHandle( hFileHandle ), - pBuff, nCount, &nWritten, NULL ) != 0, 0 ); + pBuff, nCount, &dwWritten, NULL ) != 0, 0 ); + nWritten = dwWritten; + } } # endif diff --git a/harbour/src/rtl/hbsocket.c b/harbour/src/rtl/hbsocket.c index 06ee8b3731..0556ceee99 100644 --- a/harbour/src/rtl/hbsocket.c +++ b/harbour/src/rtl/hbsocket.c @@ -52,7 +52,7 @@ #include "hbsocket.h" -#if ( defined( HB_OS_DOS ) && !defined( HB_HAS_WATT ) ) +#if defined( HB_OS_DOS ) && !defined( HB_HAS_WATT ) # if !defined( HB_SOCKET_OFF ) # define HB_SOCKET_OFF # endif