Ignore:
Timestamp:
Feb 15, 2007, 8:25:32 AM (18 years ago)
Author:
RBRi
Message:

method name refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NewView/ViewStub.pas

    r64 r78  
    6868    result := NULLHANDLE;
    6969
    70     if aCmdLineParameters.getInterpretedFileNames = '' then
     70    if aCmdLineParameters.getFileNames = '' then
    7171      // not loading files; nothing to check
    7272      exit;
     
    7575    tmpFilenames := TStringList.Create;
    7676
    77     StrExtractStrings(tmpFileItems, aCmdLineParameters.getInterpretedFileNames, ['+'], #0);
     77    StrExtractStrings(tmpFileItems, aCmdLineParameters.getFileNames, ['+'], #0);
    7878    TranslateIPFEnvironmentVars(tmpFileItems, tmpFileNames );
    7979
     
    183183    // seperate window message
    184184    if not tmpCmdLineParameters.getGlobalSearchFlag
    185        AND (tmpCmdLineParameters.getInterpretedSearchText <> '')
     185       AND (tmpCmdLineParameters.getSearchText <> '')
    186186    then
    187187    begin
    188188      PostNewViewTextMessage( tmpExistingWindow,
    189189                              NHM_SEARCH,
    190                               tmpCmdLineParameters.getInterpretedSearchText);
     190                              tmpCmdLineParameters.getSearchText);
    191191    end;
    192192
     
    195195      PostNewViewTextMessage( tmpExistingWindow,
    196196                              NHM_GLOBAL_SEARCH,
    197                               tmpCmdLineParameters.getInterpretedSearchText);
     197                              tmpCmdLineParameters.getSearchText);
    198198    end;
    199199
Note: See TracChangeset for help on using the changeset viewer.