Ignore:
Timestamp:
17.06.2009 10:04:22 (3 years ago)
Author:
stoecker
Message:

remove all these ugly tab stops introduced in the last half year

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/GpxExportAction.java

    r1676 r1677  
    107107        p.add(warning, GBC.eol().fill(GBC.HORIZONTAL).insets(15,0,0,0)); 
    108108        addDependencies(author, authorName, email, copyright, predefined, copyrightYear, nameLabel, emailLabel, copyrightLabel, copyrightYearLabel, warning); 
    109          
     109 
    110110        // if the user name is not the email address, but the osm user name 
    111111        // move it from the email textfield to the author textfield 
     
    119119        p.add(keywords, GBC.eop().fill(GBC.HORIZONTAL)); 
    120120 
    121         int answer = new ExtendedDialog(Main.parent,  
    122                         tr("Export options"),  
     121        int answer = new ExtendedDialog(Main.parent, 
     122                        tr("Export options"), 
    123123                        p, 
    124                         new String[] {tr("Export and Save"), tr("Cancel")},  
    125                         new String[] {"exportgpx.png", "cancel.png"}).getValue();   
     124                        new String[] {tr("Export and Save"), tr("Cancel")}, 
     125                        new String[] {"exportgpx.png", "cancel.png"}).getValue(); 
    126126        if (answer != 1) 
    127127            return; 
     
    140140        else 
    141141            gpxData = OsmDataLayer.toGpxData(Main.ds, file); 
    142          
     142 
    143143        // add author and copyright details to the gpx data 
    144144        if(author.isSelected()) { 
     
    151151            if(copyrightYear.getText().length() > 0) gpxData.attr.put(GpxData.META_COPYRIGHT_YEAR, copyrightYear.getText()); 
    152152        } 
    153          
     153 
    154154        // add the description to the gpx data 
    155155        if(desc.getText().length() > 0) gpxData.attr.put(GpxData.META_DESC, desc.getText()); 
    156          
     156 
    157157        // add keywords to the gpx data 
    158158        if(keywords.getText().length() > 0) gpxData.attr.put(GpxData.META_KEYWORDS, keywords.getText()); 
    159          
     159 
    160160        try { 
    161161            FileOutputStream fo = new FileOutputStream(file); 
Note: See TracChangeset for help on using the changeset viewer.