Ignore:
Timestamp:
2009-06-17T09:46:26+02:00 (17 years ago)
Author:
stoecker
Message:

fix build issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java

    r13784 r15961  
    1515/**
    1616 * Preference settings for the French Cadastre plugin
    17  * 
     17 *
    1818 * @author Pieren <pieren3@gmail.com>
    1919 */
    2020public class CadastrePreferenceSetting implements PreferenceSetting {
    21    
     21
    2222    static final int TRANS_MIN = 1;
    2323    static final int TRANS_MAX = 10;
    24     private JSlider sliderTrans = new JSlider(JSlider.HORIZONTAL, TRANS_MIN, TRANS_MAX, TRANS_MAX); 
    25    
     24    private JSlider sliderTrans = new JSlider(JSlider.HORIZONTAL, TRANS_MIN, TRANS_MAX, TRANS_MAX);
     25
    2626    private JTextField sourcing = new JTextField(20);
    2727
     
    2929
    3030    private JCheckBox reversGrey = new JCheckBox(tr("Reverse grey colors (for black backgrounds)."));
    31    
     31
    3232    private JCheckBox transparency = new JCheckBox(tr("Set background transparent."));
    33    
     33
    3434    private JCheckBox drawBoundaries = new JCheckBox(tr("Draw boundaries of downloaded data."));
    3535
     
    3939
    4040    private JRadioButton grabMultiplier3 = new JRadioButton("", true);
    41    
     41
    4242    private JRadioButton grabMultiplier4 = new JRadioButton("", true);
    4343
     
    9797        sliderTrans.setPaintLabels(false);
    9898        cadastrewms.add(sliderTrans, GBC.eol().fill(GBC.HORIZONTAL).insets(20, 0, 250, 0));
    99        
     99
    100100        // option to draw boundaries of downloaded data
    101101        drawBoundaries.setSelected(Main.pref.getBoolean("cadastrewms.drawBoundaries", false));
     
    150150        grabMultiplier4Size.setEnabled(currentScale.equals(Scale.SQUARE_100M.value));
    151151        cadastrewms.add(grabMultiplier4Size, GBC.eol().fill(GBC.HORIZONTAL).insets(5, 5, 0, 5));
    152        
     152
    153153        // option to enable automatic caching
    154154        enableCache.addActionListener(new ActionListener() {
     
    197197        }
    198198        Main.pref.put("cadastrewms.enableCaching", enableCache.isSelected());
    199        
     199
    200200        // spread data into objects instead of restarting the application
    201201        try {
Note: See TracChangeset for help on using the changeset viewer.