From 273f42e2444019a2c7c275ec16b9c0102e65ba97 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Thu, 20 May 2010 03:48:53 +0000 Subject: [PATCH] 2010-05-19 20:45 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/hbide/ideprojmanager.prg ! Fixed: project location was shown blank. Itamar reported. --- harbour/ChangeLog | 6 +++++- harbour/contrib/hbide/ideprojmanager.prg | 6 ++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index eee05a7726..14bebf0f1a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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. diff --git a/harbour/contrib/hbide/ideprojmanager.prg b/harbour/contrib/hbide/ideprojmanager.prg index ec5bd2f53a..a70bc7471e 100644 --- a/harbour/contrib/hbide/ideprojmanager.prg +++ b/harbour/contrib/hbide/ideprojmanager.prg @@ -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()