Changeset 15356 in josm for trunk/src/org
- Timestamp:
- 2019-09-19T11:12:31+02:00 (5 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java
r14932 r15356 224 224 saveToHistory(s); 225 225 lastSearch = new SearchSetting(s); 226 search (s);226 searchStateless(s); 227 227 } 228 228 … … 234 234 public static void searchWithoutHistory(SearchSetting s) { 235 235 lastSearch = new SearchSetting(s); 236 search (s);236 searchStateless(s); 237 237 } 238 238 … … 247 247 searchSetting.text = search; 248 248 searchSetting.mode = mode; 249 search(searchSetting); 250 } 251 252 static void search(SearchSetting s) { 249 searchStateless(searchSetting); 250 } 251 252 /** 253 * Performs a stateless search specified by the settings in <code>s</code>. 254 * 255 * @param s search settings 256 * @since 15356 257 */ 258 public static void searchStateless(SearchSetting s) { 253 259 SearchTask.newSearchTask(s, new SelectSearchReceiver()).run(); 254 260 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/SelectionListDialog.java
r14734 r15356 746 746 @Override 747 747 public void actionPerformed(ActionEvent e) { 748 org.openstreetmap.josm.actions.search.SearchAction.search WithoutHistory(s);748 org.openstreetmap.josm.actions.search.SearchAction.searchStateless(s); 749 749 } 750 750 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r14685 r15356 1192 1192 return; 1193 1193 final SearchSetting ss = createSearchSetting(key, sel, sameType); 1194 org.openstreetmap.josm.actions.search.SearchAction.search WithoutHistory(ss);1194 org.openstreetmap.josm.actions.search.SearchAction.searchStateless(ss); 1195 1195 } 1196 1196 }
Note:
See TracChangeset
for help on using the changeset viewer.