Changeset 30150 in osm for applications/editors/josm/plugins/smed2/src/smed2/Smed2Action.java
- Timestamp:
- 2013-12-25T11:40:00+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed2/src/smed2/Smed2Action.java
r30037 r30150 30 30 31 31 import s57.S57dat; 32 import s eamap.SeaMap;33 import s eamap.SeaMap.*;32 import s57.S57map; 33 import s57.S57map.*; 34 34 35 35 import panels.PanelMain; … … 40 40 public static JFrame editFrame = null; 41 41 public static ShowFrame showFrame = null; 42 public static S57dat panelS57;43 42 private boolean isOpen = false; 44 43 public static PanelMain panelMain = null; 45 44 public MapImage rendering; 46 public S eaMap map = null;45 public S57map map = null; 47 46 public DataSet data = null; 48 47 … … 122 121 panelMain = new PanelMain(this); 123 122 editFrame.add(panelMain); 124 panelS57 = new S57dat();125 panelS57.setVisible(false);126 editFrame.add(panelS57);127 123 128 124 showFrame = new ShowFrame(tr("Seamark Inspector")); … … 206 202 207 203 void makeMap() { 208 map = new S eaMap();204 map = new S57map(); 209 205 if (data != null) { 210 206 for (Node node : data.getNodes()) {
Note:
See TracChangeset
for help on using the changeset viewer.