Ignore:
Timestamp:
2011-07-10T23:22:15+02:00 (13 years ago)
Author:
stoecker
Message:

i18n update, update to josm core cleanup

Location:
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/JosmSelectionListModel.java

    r23571 r26299  
    213213    }
    214214
    215     public void primtivesAdded(PrimitivesAddedEvent event) {/* ignored - handled by SelectionChangeListener */}
    216     public void primtivesRemoved(PrimitivesRemovedEvent event) {/* ignored - handled by SelectionChangeListener*/}
     215    public void primitivesAdded(PrimitivesAddedEvent event) {/* ignored - handled by SelectionChangeListener */}
     216    public void primitivesRemoved(PrimitivesRemovedEvent event) {/* ignored - handled by SelectionChangeListener*/}
    217217 
    218218    /* ------------------------------------------------------------------------ */
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/TurnRestrictionEditorModel.java

    r24125 r26299  
    410410    public void otherDatasetChange(AbstractDatasetChangedEvent event) {/* irrelevant in this context */}
    411411
    412     public void primtivesAdded(PrimitivesAddedEvent event) {/* irrelevant in this context */}
    413     public void primtivesRemoved(PrimitivesRemovedEvent event) {
     412    public void primitivesAdded(PrimitivesAddedEvent event) {/* irrelevant in this context */}
     413    public void primitivesRemoved(PrimitivesRemovedEvent event) {
    414414        // relevant for the state of this model but not handled here. When the
    415415        // state of this model is applied to the dataset we check whether the
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/list/TurnRestrictionsInDatasetListModel.java

    r23510 r26299  
    8787    }
    8888
    89     public void primtivesAdded(PrimitivesAddedEvent event) {
     89    public void primitivesAdded(PrimitivesAddedEvent event) {
    9090        List<Relation> turnRestrictions = filterTurnRestrictions(event.getPrimitives());
    9191        if (!turnRestrictions.isEmpty()) {
     
    9494    }
    9595
    96     public void primtivesRemoved(PrimitivesRemovedEvent event) {
     96    public void primitivesRemoved(PrimitivesRemovedEvent event) {
    9797        List<Relation> turnRestrictions = filterTurnRestrictions(event.getPrimitives());
    9898        if (!turnRestrictions.isEmpty()) {
Note: See TracChangeset for help on using the changeset viewer.