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

Last change on this file since 1047 was 627, checked in by framm, 16 years ago
  • Property svn:eol-style set to native
File size: 511 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 void ok() {
13 // 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.