From ba05bedd93e89990bffe2627bbc4adccbebe2054 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Sun, 4 Apr 2010 14:11:08 +0000 Subject: [PATCH] 2010-04-04 07:06 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/hbide/ideenviron.prg ! Fixed wrong variable assign. ! Fixed to accept any path instead of "*.exe". Thanks Barry for the bug. --- harbour/ChangeLog | 6 ++++++ harbour/contrib/hbide/ideenviron.prg | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7a017831a6..1d35d5863e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,12 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-04-04 07:06 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) + * contrib/hbide/ideenviron.prg + ! Fixed wrong variable assign. + ! Fixed to accept any path instead of "*.exe". + Thanks Barry for the bug. + 2010-04-03 17:05 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/hbqt/hbqt_hbqplaintextedit.cpp ! Optimization and LineNumbers area refinements. diff --git a/harbour/contrib/hbide/ideenviron.prg b/harbour/contrib/hbide/ideenviron.prg index 89997891c1..bda0c689ee 100644 --- a/harbour/contrib/hbide/ideenviron.prg +++ b/harbour/contrib/hbide/ideenviron.prg @@ -233,10 +233,10 @@ METHOD IdeEnvironments:execEnv( nMode, p ) DO CASE CASE nMode == 1 cPath := hbide_fetchAFile( ::oDlg, "Select location of hbmk2", ; - { { "Harbour Projects Builder - hbmk2", "*.exe" } }, ::cWrkPathMK2 ) + { { "Harbour Projects Builder - hbmk2", "*.*" } }, ::cWrkPathMK2 ) IF !empty( cPath ) hb_fNameSplit( cPath, @cP ) - ::cWrkPathMK2 := cP + ::oIde:cWrkPathMK2 := cP ::oUI:q_editPathMk2:setText( hbide_pathStripLastSlash( cP ) ) ENDIF