Ignore:
Timestamp:
2016-06-30T20:10:45+02:00 (8 years ago)
Author:
donvip
Message:

remove calls to deprecated methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/indoorhelper/src/model/IndoorHelperModel.java

    r32122 r32468  
    3939 * @author egru
    4040 */
    41 
    4241public class IndoorHelperModel{
    4342
     
    261260         */
    262261        public void addTagsToOSM(IndoorObject object, List<Tag> userTags){
    263                 if(!Main.main.getCurrentDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
     262                if(!Main.getLayerManager().getEditDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
    264263                       
    265264                        List<Tag> tags = this.getObjectTags(object);
     
    279278                        }
    280279                       
    281                 } else if(Main.main.getCurrentDataSet().selectionEmpty()){
     280                } else if(Main.getLayerManager().getEditDataSet().selectionEmpty()){
    282281                       
    283282                        JOptionPane.showMessageDialog(null, "No data selected.", "Error", JOptionPane.ERROR_MESSAGE);
    284                        
    285                 }
    286                
     283                }
    287284        }
    288285       
     
    295292        public void addTagsToOSM(IndoorObject object){
    296293               
    297                 if(!Main.main.getCurrentDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
     294                if(!Main.getLayerManager().getEditDataSet().selectionEmpty() && !Main.main.getInProgressSelection().isEmpty()){
    298295                        List<Tag> tags = this.getObjectTags(object);
    299296                        tags.add(new Tag("indoor:level", Integer.toString(workingLevel)));
     
    306303                                Main.main.undoRedo.add(new ChangePropertyCommand(Main.main.getInProgressSelection(), t.getKey(), t.getValue()));
    307304                        }
    308                 } else if(Main.main.getCurrentDataSet().selectionEmpty()){
     305                } else if(Main.getLayerManager().getEditDataSet().selectionEmpty()){
    309306                        JOptionPane.showMessageDialog(null, "No data selected.", "Error", JOptionPane.ERROR_MESSAGE);
    310307                }
    311                
    312                
    313308        }
    314309       
     
    321316                return counter.getRanking();
    322317        }
    323        
    324        
    325 
    326318}
Note: See TracChangeset for help on using the changeset viewer.