Changeset 30010 in osm for applications


Ignore:
Timestamp:
2013-10-07T14:12:52+02:00 (11 years ago)
Author:
donvip
Message:

[josm_building_tools] update to JOSM 6309

Location:
applications/editors/josm/plugins/buildings_tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/buildings_tools/.classpath

    r20245 r30010  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
    4         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
     4        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
    55        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    66        <classpathentry kind="output" path="build"/>
  • applications/editors/josm/plugins/buildings_tools/.settings/org.eclipse.jdt.core.prefs

    r29854 r30010  
    66org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
    77org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
     8org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
     9org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
     10org.eclipse.jdt.core.compiler.compliance=1.6
    811org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
     12org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
    913org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
    1014org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
     
    1519org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
    1620org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
     21org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
    1722org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
    1823org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
     
    8893org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
    8994org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
     95org.eclipse.jdt.core.compiler.source=1.6
    9096org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
    9197org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
     
    166172org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
    167173org.eclipse.jdt.core.formatter.indentation.size=4
     174org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
    168175org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
    169 org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
     176org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
     177org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
    170178org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert
     179org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert
    171180org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert
    172181org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
  • applications/editors/josm/plugins/buildings_tools/build.xml

    r29854 r30010  
    44    <property name="commit.message" value="BuildingTools: update to current JOSM"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="6162"/>
     6    <property name="plugin.main.version" value="6309"/>
    77   
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/buildings_tools/src/buildings_tools/AdvancedSettingsDialog.java

    r28529 r30010  
    3939
    4040    public void saveSettings() {
    41         tagsModel.applyToTags(ToolSettings.getTags());
     41        tagsModel.applyToTags(ToolSettings.getTags(), false);
    4242        ToolSettings.saveTags();
    4343        ToolSettings.setBBMode(cBigMode.isSelected());
Note: See TracChangeset for help on using the changeset viewer.