diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 050c3c0e1c..64f766d7c1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/hbide/functions.prg b/harbour/contrib/hbide/functions.prg index 90d53edb15..575e51f4c5 100644 --- a/harbour/contrib/hbide/functions.prg +++ b/harbour/contrib/hbide/functions.prg @@ -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 diff --git a/harbour/contrib/hbide/uisrcmanager.prg b/harbour/contrib/hbide/uisrcmanager.prg index 3896a9869c..9305fd55ad 100644 --- a/harbour/contrib/hbide/uisrcmanager.prg +++ b/harbour/contrib/hbide/uisrcmanager.prg @@ -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 )