source: josm/trunk/src/org/openstreetmap/josm/gui/preferences/MapPaintPreference.java@ 1180

Last change on this file since 1180 was 1180, checked in by stoecker, 15 years ago

fixed bug #1871, removed all deprecations

  • Property svn:eol-style set to native
File size: 571 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.gui.preferences;
3
4import org.openstreetmap.josm.gui.mappaint.MapPaintStyles;
5
6public class MapPaintPreference implements PreferenceSetting {
7
8 public void addGui(final PreferenceDialog gui) {
9 // this is intended for a future configuration panel for mappaint!
10 }
11
12 public boolean ok() {
13 return false; // dummy
14 }
15
16 /**
17 * Initialize the styles
18 */
19 public static void initialize() {
20 MapPaintStyles.readFromPreferences();
21 }
22}
Note: See TracBrowser for help on using the repository browser.