Changeset 31584 in osm


Ignore:
Timestamp:
2015-10-01T20:55:17+02:00 (9 years ago)
Author:
simon04
Message:

JOSM/routes: refactor for upcoming search API changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/OSMRecPlugin/src/org/openstreetmap/josm/plugins/osmrec/OSMRecToggleDialog.java

    r31461 r31584  
    13351335            }
    13361336
    1337             SearchSetting ss = new SearchSetting(s.toString(), SearchMode.replace, true, false, false);
     1337            SearchSetting ss = new SearchSetting();
     1338            ss.text = s.toString();
     1339            ss.mode = SearchMode.replace;
     1340            ss.caseSensitive = true;
    13381341            org.openstreetmap.josm.actions.search.SearchAction.searchWithoutHistory(ss);
    13391342        }
Note: See TracChangeset for help on using the changeset viewer.