Changeset 78 for trunk/NewView/ViewStub.pas
- Timestamp:
- Feb 15, 2007, 8:25:32 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NewView/ViewStub.pas
r64 r78 68 68 result := NULLHANDLE; 69 69 70 if aCmdLineParameters.get InterpretedFileNames = '' then70 if aCmdLineParameters.getFileNames = '' then 71 71 // not loading files; nothing to check 72 72 exit; … … 75 75 tmpFilenames := TStringList.Create; 76 76 77 StrExtractStrings(tmpFileItems, aCmdLineParameters.get InterpretedFileNames, ['+'], #0);77 StrExtractStrings(tmpFileItems, aCmdLineParameters.getFileNames, ['+'], #0); 78 78 TranslateIPFEnvironmentVars(tmpFileItems, tmpFileNames ); 79 79 … … 183 183 // seperate window message 184 184 if not tmpCmdLineParameters.getGlobalSearchFlag 185 AND (tmpCmdLineParameters.get InterpretedSearchText <> '')185 AND (tmpCmdLineParameters.getSearchText <> '') 186 186 then 187 187 begin 188 188 PostNewViewTextMessage( tmpExistingWindow, 189 189 NHM_SEARCH, 190 tmpCmdLineParameters.get InterpretedSearchText);190 tmpCmdLineParameters.getSearchText); 191 191 end; 192 192 … … 195 195 PostNewViewTextMessage( tmpExistingWindow, 196 196 NHM_GLOBAL_SEARCH, 197 tmpCmdLineParameters.get InterpretedSearchText);197 tmpCmdLineParameters.getSearchText); 198 198 end; 199 199
Note:
See TracChangeset
for help on using the changeset viewer.