2012-09-22 08:58 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/main.prg
    ! Fixed: regression - IdeDBU was not showing up auto when 
       HbIDE was invoked in DBU mode, reported by Massimo, thanks.
This commit is contained in:
Pritpal Bedi
2012-09-22 16:01:02 +00:00
parent 446bfbb123
commit 5f3efb85ad
2 changed files with 9 additions and 3 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-09-22 08:58 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/main.prg
! Fixed: regression - IdeDBU was not showing up auto when
HbIDE was invoked in DBU mode, reported by Massimo, thanks.
2012-09-22 12:23 UTC+0200 Viktor Szakats (harbour syenar.net)
* website/index.html
! synced with today's filename lowercasing effort

View File

@@ -756,6 +756,7 @@ METHOD HbIde:create( aParams )
IF ! empty( ::aDbfOnCmdLine ) /* Will take priority and allot more width to browser than editor : logical */
::oBM:open( ::aDbfOnCmdLine )
::oParts:setStack( IDE_PART_DBU )
ENDIF
::qTabWidget:setCurrentIndex( -1 )
@@ -1011,13 +1012,13 @@ METHOD HbIde:execAction( cKey )
::oHelpDock:show()
EXIT
CASE "EDITOR"
::oParts:setStack( 0 )
::oParts:setStack( IDE_PART_EDITOR )
EXIT
CASE "DBU"
::oParts:setStack( 1 )
::oParts:setStack( IDE_PART_DBU )
EXIT
CASE "REPORTS"
::oParts:setStack( 2 )
::oParts:setStack( IDE_PART_REPORTSDESIGNER )
EXIT
ENDSWITCH