Changeset 18408 in osm for applications/editors/josm/plugins/czechaddress
- Timestamp:
- 2009-11-01T14:48:03+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/ConflictResolver.java
r15585 r18408 65 65 66 66 // And finalize initializing the form. 67 setupDialog(mainPanel, new String[] {}); 67 setContent(mainPanel); 68 setupDialog(); 68 69 // TODO: Why does it always crash if the modality is set in constructor? 69 70 setModal(false); -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/databaseeditors/HouseEditor.java
r15649 r18408 34 34 35 35 // And finalize initializing the form. 36 setupDialog(mainPanel, new String[] {"ok.png", "cancel.png"}); 36 setContent(mainPanel); 37 this.setButtonIcons(new String[] {"ok.png", "cancel.png"}); 38 setupDialog(); 37 39 } 38 40 -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/databaseeditors/StreetEditor.java
r15649 r18408 45 45 46 46 // And finalize initializing the form. 47 setupDialog(mainPanel, new String[] {"ok.png", "cancel.png"}); 47 setContent(mainPanel); 48 this.setButtonIcons(new String[] {"ok.png", "cancel.png"}); 49 setupDialog(); 48 50 } 49 51 -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/databaseeditors/SuburbEditor.java
r15649 r18408 53 53 54 54 // And finalize initializing the form. 55 setupDialog(mainPanel, new String[] {"ok.png", "cancel.png"}); 55 setContent(mainPanel); 56 this.setButtonIcons(new String[] {"ok.png", "cancel.png"}); 57 setupDialog(); 56 58 } 57 59
Note:
See TracChangeset
for help on using the changeset viewer.