2011-07-25 13:02 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/idemain.prg
    + Implemented: Order of "Functions List" is remembered as per 
      last setting initiated by the user via context menu. The order
      can be "Natural" or "Ascending".
This commit is contained in:
Pritpal Bedi
2011-07-25 20:06:07 +00:00
parent 6844b06c1f
commit 0da4ad5b85
2 changed files with 11 additions and 1 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-07-25 13:02 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idemain.prg
+ Implemented: Order of "Functions List" is remembered as per
last setting initiated by the user via context menu. The order
can be "Natural" or "Ascending".
2011-07-23 15:08 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/hbwin/olecore.c
! fixed to use Harbour STR API instead of hardcoded ANSI CP for

View File

@@ -330,6 +330,8 @@ CLASS HbIde
DATA oSys
DATA oSysMenu
DATA lSortedFuncList INIT .t.
METHOD new( aParams )
METHOD create( aParams )
METHOD destroy()
@@ -1445,7 +1447,9 @@ METHOD HbIde:manageProjectContext( mp1, mp2, oXbpTreeItem )
METHOD HbIde:updateFuncList( lSorted )
LOCAL a_:={}
DEFAULT lSorted TO .t.
DEFAULT lSorted TO ::lSortedFuncList
::lSortedFuncList := lSorted
::oFuncList:clear()
IF !empty( ::aTags )