- Timestamp:
- 2009-06-01T00:07:28+02:00 (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/UploadAction.java
r1628 r1630 105 105 p.add(new JLabel(tr("Provide a brief comment for the changes you are uploading:")), GBC.eol().insets(0, 5, 10, 3)); 106 106 SuggestingJHistoryComboBox cmt = new SuggestingJHistoryComboBox(); 107 List<String> cmtHistory = new LinkedList<String>(Main.pref.getCollection(HISTORY_KEY, n ull));107 List<String> cmtHistory = new LinkedList<String>(Main.pref.getCollection(HISTORY_KEY, new LinkedList<String>())); 108 108 cmt.setHistory(cmtHistory); 109 109 //final JTextField cmt = new JTextField(lastCommitComment); -
trunk/src/org/openstreetmap/josm/io/OsmServerWriter.java
r1628 r1630 100 100 // add the last entered comment to the changeset 101 101 String cmt = ""; 102 List<String> history = new LinkedList<String>(Main.pref.getCollection(UploadAction.HISTORY_KEY, null)); 102 List<String> history = new LinkedList<String>( 103 Main.pref.getCollection(UploadAction.HISTORY_KEY, new LinkedList<String>())); 103 104 if(history.size() > 0) { 104 105 cmt = history.get(0); -
trunk/styles/standard/elemstyles.xml
r1629 r1630 355 355 <condition k="barrier" v="bollard"/> 356 356 <icon annotate="true" src="vehicle/restriction/bollard.png"/> 357 <line width="3" colour="barrier#F0F050" closed="true"/>357 <line width="3" colour="barrier#F0F050"/> 358 358 <scale_min>1</scale_min> 359 359 <scale_max>50000</scale_max>
Note:
See TracChangeset
for help on using the changeset viewer.