2012-09-01 02:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/functions.prg
  * contrib/hbide/uisrcmanager.prg
    ! Fixed: QBrush, a non-QOject derived object was being applied
       :setObjectName() method. There may be few more, but will 
       will be implemented if those are actually used under 
       Qt Designer properties.
This commit is contained in:
Pritpal Bedi
2012-09-01 09:27:05 +00:00
parent 19697ef732
commit 7c16a7c3eb
3 changed files with 10 additions and 2 deletions

View File

@@ -16,6 +16,14 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-09-01 02:22 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/functions.prg
* contrib/hbide/uisrcmanager.prg
! Fixed: QBrush, a non-QOject derived object was being applied
:setObjectName() method. There may be few more, but will
will be implemented if those are actually used under
Qt Designer properties.
2012-08-31 17:42 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/confgtoolbars.png
* contrib/hbide/hbide.qrc

View File

@@ -523,7 +523,7 @@ METHOD IdeFunctions:tagProject( cProjectTitle, lGUI )
LOCAL cProjFile, cRoot, aCTags, aSources, cSrc, a_, n
LOCAL qApp := QApplication()
DEFAULT lGUI TO .T.
hb_default( @lGUI, .T. )
IF !( ::inAction )
IF lGUI

View File

@@ -719,7 +719,7 @@ METHOD IdeUISrcManager:buildWidget( cBuffer, cPath, cName, cExt, aPrg )
cObj := substr( s, n+2 )
oObj := ::qU:&cObj
cCls := __objGetClsName( oObj )
IF ! ( cCls $ "QPALETTE,QPIXMAP,QIMAGE,QICON,QSIZEPOLICY,QFONT,QGRIDLAYOUT,QHBOXLAYOUT,QVBOXLAYOUT,QSPACERITEM,QLAYOUT,QSPLITTER,QSCROLLAREA,QTREEWIDGETITEM,QLISTWIDGETITEM" )
IF ! ( cCls $ "QBRUSH,QPALETTE,QPIXMAP,QIMAGE,QICON,QSIZEPOLICY,QFONT,QGRIDLAYOUT,QHBOXLAYOUT,QVBOXLAYOUT,QSPACERITEM,QLAYOUT,QSPLITTER,QSCROLLAREA,QTREEWIDGETITEM,QLISTWIDGETITEM" )
aadd( ::aObjByName, cObj )
oObj:setObjectName( cObj )