Changeset 6551 in josm


Ignore:
Timestamp:
2013-12-28T00:30:06+01:00 (10 years ago)
Author:
simon04
Message:

sdf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java

    r6550 r6551  
    4343import org.openstreetmap.josm.tools.Utils;
    4444
     45import javax.swing.JPanel;
     46
    4547/**
    4648 * MapCSS-based tag checker/fixer.
     
    5355     */
    5456    public MapCSSTagChecker() {
    55         super(tr("Tag checker (new)"), tr("This test checks for errors in tag keys and values."));
     57        super(tr("Tag checker (MapCSS based)"), tr("This test checks for errors in tag keys and values."));
    5658    }
    5759
     
    385387        addMapCSS("geometry");
    386388    }
     389
     390    @Override
     391    public void addGui(JPanel testPanel) {
     392        super.addGui(testPanel);
     393    }
     394
     395    @Override
     396    public boolean ok() {
     397        return super.ok();
     398    }
    387399}
Note: See TracChangeset for help on using the changeset viewer.