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.
This commit is contained in:
Pritpal Bedi
2010-04-04 14:11:08 +00:00
parent 3ec6565172
commit ba05bedd93
2 changed files with 8 additions and 2 deletions

View File

@@ -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.

View File

@@ -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