Ignore:
Timestamp:
Mar 10, 2007, 8:05:21 PM (18 years ago)
Author:
RBRi
Message:

+ i18n debug messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NewView/DebugUnit.pas

    r82 r94  
    2222                        LogShutdown,
    2323                        LogSettings,
     24                        LogI18n,
    2425                        LogParse,
    2526                        LogDisplay,
     
    119120  Begin
    120121    Case aLogAspect of
    121       LogStartup      :  result := 'Startup';
    122       LogShutdown     :  result := 'Start';
    123       LogSettings     :  result := 'Settings';
    124       LogParse        :  result := 'Parse';
    125       LogDisplay      :  result := 'Display';
    126       LogSearch       :  result := 'Search';
    127       LogNHM          :  result := 'NewHelpManager';
    128       LogViewStub     :  result := 'ViewStub';
    129       LogObjConstDest :  result := 'ObjConstDest';
    130       LogDebug        :  result := 'Debug';
    131       else               result := 'Unknown';
     122      LogStartup      : result := 'Startup';
     123      LogShutdown     : result := 'Start';
     124      LogSettings     : result := 'Settings';
     125      LogI18n         : result := 'I18n';
     126      LogParse        : result := 'Parse';
     127      LogDisplay      : result := 'Display';
     128      LogSearch       : result := 'Search';
     129      LogNHM          : result := 'NewHelpManager';
     130      LogViewStub     : result := 'ViewStub';
     131      LogObjConstDest : result := 'ObjConstDest';
     132      LogDebug        : result := 'Debug';
     133      else              result := 'Unknown';
    132134      end;
    133135  End;
     
    147149      if tmpAspects[i] = 'LogShutdown'     then activeLogAspects := activeLogAspects + [ LogShutdown ];
    148150      if tmpAspects[i] = 'LogSettings'     then activeLogAspects := activeLogAspects + [ LogSettings ];
     151      if tmpAspects[i] = 'LogI18n'         then activeLogAspects := activeLogAspects + [ LogI18n ];
    149152      if tmpAspects[i] = 'LogParse'        then activeLogAspects := activeLogAspects + [ LogParse ];
    150153      if tmpAspects[i] = 'LogDisplay'      then activeLogAspects := activeLogAspects + [ LogDisplay ];
Note: See TracChangeset for help on using the changeset viewer.