Ignore:
Timestamp:
2010-08-29T13:26:12+02:00 (14 years ago)
Author:
stoecker
Message:

cleanup build

Location:
applications/editors/josm/plugins/videomapping
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/videomapping/build.xml

    r22691 r22850  
    4040      ** should not be necessary to change the following properties
    4141     -->
    42         <property name="josm"                   location="../JOSM/dist/josm-custom.jar"/> <!-- patched for my own workbench, will fix if I understand how you have to setup it right-->
     42        <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
    4343        <property name="plugin.build.dir"       value="build"/>
    4444        <property name="plugin.src.dir"         value="src"/>
    4545        <!-- this is the directory where the plugin jar is copied to -->
    46         <property name="plugin.dist.dir"        value="../JOSM/dist"/>
    47         <property name="ant.build.javac.target" value="1.5"/>
     46        <property name="plugin.dist.dir"        value="../../dist"/>
     47        <property name="ant.build.javac.target" value="1.6"/>
    4848        <property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
    4949        <property name="vlcj"                  value="lib/vlcj-1.1.2.jar"/>
  • applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/PositionLayer.java

    r22691 r22850  
    7676                gpsTimeCode= new SimpleDateFormat("hh:mm:ss");
    7777                Main.map.mapView.addMouseListener(this);
    78                 Main.map.mapView.addMouseMotionListener(this);                                                 
    79                
     78                Main.map.mapView.addMouseMotionListener(this);
    8079        }
    8180
     
    9695
    9796        @Override
    98         public Component[] getMenuEntries() {
    99         return new Component[]{
    100                 new JMenuItem(LayerListDialog.getInstance().createShowHideLayerAction(this)),
    101                 new JMenuItem(LayerListDialog.getInstance().createDeleteLayerAction(this)),
    102                 new JSeparator(),
     97        public Action[] getMenuEntries() {
     98        return new Action[]{
     99                LayerListDialog.getInstance().createActivateLayerAction(this),
     100                LayerListDialog.getInstance().createShowHideLayerAction(),
     101                LayerListDialog.getInstance().createDeleteLayerAction(),
     102                SeparatorLayerAction.INSTANCE,
    103103                //TODO here my stuff
    104                 new JSeparator(),
    105                 new JMenuItem(new LayerListPopup.InfoAction(this))};//TODO here infos about the linked videos
    106         }
    107          
    108 
     104                SeparatorLayerAction.INSTANCE,
     105                new LayerListPopup.InfoAction(this)};//TODO here infos about the linked videos
     106        }
    109107
    110108        @Override
     
    123121               
    124122        }
    125 
    126        
    127123       
    128124        @Override
  • applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/VideoMappingPlugin.java

    r22690 r22850  
    6969          //TODO What more to store during sessions? Size/Position
    7070         
    71 
    7271        public VideoMappingPlugin(PluginInformation info) {
    7372                super(info);
Note: See TracChangeset for help on using the changeset viewer.