source: osm/applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java@ 31256

Last change on this file since 31256 was 31256, checked in by nokutu, 10 years ago

Started with history dialog and code cleaned

File size: 368 bytes
Line 
1package org.openstreetmap.josm.plugins.mapillary.gui;
2
3import static org.openstreetmap.josm.tools.I18n.tr;
4
5import org.openstreetmap.josm.gui.dialogs.ToggleDialog;
6
7public class MapillaryHistoryDialog extends ToggleDialog {
8
9 public MapillaryHistoryDialog() {
10 super(tr("Mapillary history"), "mapillary.png",
11 tr("Open Mapillary history dialog"), null, 200);
12 }
13}
Note: See TracBrowser for help on using the repository browser.