Changeset 33641 in osm for applications/editors/josm/plugins/wikipedia/src
- Timestamp:
- 2017-09-20T21:35:05+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/wikipedia/src/org/wikipedia/gui
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wikipedia/src/org/wikipedia/gui/WikosmDownloadSource.java
r33628 r33641 30 30 import org.openstreetmap.josm.gui.download.DownloadSourceSizingPolicy; 31 31 import org.openstreetmap.josm.gui.download.DownloadSourceSizingPolicy.AdjustableDownloadSizePolicy; 32 import org.openstreetmap.josm.gui.download.UserQueryList; 32 33 import org.openstreetmap.josm.gui.util.GuiHelper; 33 34 import org.openstreetmap.josm.gui.widgets.JosmTextArea; … … 84 85 85 86 private final JosmTextArea wikosmQuery; 86 private final WikosmQueryList wikosmQueryList;87 private final UserQueryList wikosmQueryList; 87 88 private final JCheckBox referrers; 88 89 private final JCheckBox fullRel; 89 90 90 91 /** 91 * Create a new {@ linkWikosmDownloadSourcePanel}92 * Create a new {@code WikosmDownloadSourcePanel} 92 93 * @param ds The download source to create the panel for 93 94 */ … … 123 124 124 125 125 this.wikosmQueryList = new WikosmQueryList(this, this.wikosmQuery);126 this.wikosmQueryList = new UserQueryList(this, this.wikosmQuery, "download.wikosm.query"); 126 127 this.wikosmQueryList.setPreferredSize(new Dimension(350, 300)); 127 128 … … 269 270 270 271 /** 271 * Action that delegates snippet creation to {@link WikosmQueryList#createNewItem()}.272 * Action that delegates snippet creation to {@link UserQueryList#createNewItem()}. 272 273 */ 273 274 private class AddSnippetAction extends AbstractAction { … … 289 290 290 291 /** 291 * Action that delegates snippet removal to {@link WikosmQueryList#removeSelectedItem()}.292 * Action that delegates snippet removal to {@link UserQueryList#removeSelectedItem()}. 292 293 */ 293 294 private class RemoveSnippetAction extends AbstractAction implements ListSelectionListener { … … 322 323 323 324 /** 324 * Action that delegates snippet edit to {@link WikosmQueryList#editSelectedItem()}.325 * Action that delegates snippet edit to {@link UserQueryList#editSelectedItem()}. 325 326 */ 326 327 private class EditSnippetAction extends AbstractAction implements ListSelectionListener {
Note:
See TracChangeset
for help on using the changeset viewer.