2010-05-19 20:45 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* contrib/hbide/ideprojmanager.prg
    ! Fixed: project location was shown blank. Itamar reported.
This commit is contained in:
Pritpal Bedi
2010-05-20 03:48:53 +00:00
parent 400b624212
commit 273f42e244
2 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/*
/*
* $Id$
*/
@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-05-19 20:45 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/ideprojmanager.prg
! Fixed: project location was shown blank. Itamar reported.
2010-05-19 19:11 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/THbQtUI.prg
! Code cleanup.

View File

@@ -373,8 +373,10 @@ METHOD IdeProjManager:loadProperties( cProjFileName, lNew, lFetch, lUpdateTree )
ENDIF
/* Access/Assign via this object */
::oProject := IdeProject():new( ::oIDE, ::aPrjProps )
::oProject:location := cProjPath
::oProject:projPath := cProjPath
IF !empty( cProjPath )
::oProject:location := hbide_pathNormalized( cProjPath, .f. )
::oProject:projPath := ::oProject:location
ENDIF
//
::oPropertiesDock:hide()
::oPropertiesDock:show()