Changeset 2817


Ignore:
Timestamp:
Dec 1, 2017, 11:27:47 PM (7 years ago)
Author:
Andreas Schnellbacher
Message:
  • Enhanced SetMenuVarText to accept a menu id and not only a menu id name, like all similar menu defs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/menu.e

    r2816 r2817  
    526526; ---------------------------------------------------------------------------
    527527; Change a menu items text with a variable part (a part in brackets).
    528 ; Note: The MenuIdName must here submitted, not the MenuId, which works
    529 ; also in the defs above.
    530 ; Additionally, the menu id and the menu text must have been stored in the
    531 ; array vars 'mid_'MenuIdName and 'mtext_'MenuIdName.
    532 defproc SetMenuVarText( IdName, VarTextPart)
     528; The menu id and the menu text must have been stored in the array vars
     529; 'mid_'MenuIdName and 'mtext_'MenuIdName.
     530defproc SetMenuVarText( MenuId, VarTextPart)
    533531   -- Optional appending text part
    534532   AppendTextPart = arg(3)
    535    MenuId = GetAVar( 'mid_'IdName)
     533   if IsNum( MenuId) then
     534      IdName = GetAVar( 'midname_'MenuId)
     535   else
     536      IdName = lowcase( MenuId)
     537      MenuId = GetAVar( 'mid_'IdName)
     538   endif
    536539   MenuText = GetAVar('mtxt_'IdName)
    537540   parse value MenuText with next'['x']'rest
Note: See TracChangeset for help on using the changeset viewer.