- Timestamp:
- 2015-02-21T16:36:02+01:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadSessionTask.java
r7937 r8093 78 78 * Session importers can be added by plugins and there is currently 79 79 * no way to ensure that these are safe for remotecontol. 80 * @return 80 * @return <code>true</code> if session import is allowed 81 81 */ 82 82 @Override -
trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
r8092 r8093 711 711 /** 712 712 * Sets the entry name and handle translation. 713 * @param name The used language713 * @param language The used language 714 714 * @param name The entry name 715 715 * @since 8091 … … 826 826 /** 827 827 * Sets the description text when existing. 828 * @param name The used language828 * @param language The used language 829 829 * @param description the imagery description text 830 830 * @since 8091 -
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r7817 r8093 476 476 * @param initial true if this call initializes the viewport. 477 477 */ 478 private void zoomNoUndoTo(EastNorth newCenter, double newScale, boolean in tial) {478 private void zoomNoUndoTo(EastNorth newCenter, double newScale, boolean initial) { 479 479 if (!newCenter.equals(center)) { 480 480 EastNorth oldCenter = center; 481 481 center = newCenter; 482 if (!in tial) {482 if (!initial) { 483 483 firePropertyChange(PROPNAME_CENTER, oldCenter, newCenter); 484 484 } … … 487 487 double oldScale = scale; 488 488 scale = newScale; 489 if (!in tial) {489 if (!initial) { 490 490 firePropertyChange(PROPNAME_SCALE, oldScale, newScale); 491 491 } 492 492 } 493 493 494 if (!in tial) {494 if (!initial) { 495 495 repaint(); 496 496 fireZoomChanged(); -
trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java
r8005 r8093 123 123 * Detaches this contextual menu from its text component. 124 124 * @return {@code this} 125 * @see #attach(JTextComponent )125 * @see #attach(JTextComponent, boolean) 126 126 */ 127 127 protected TextContextualPopupMenu detach() { -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r7655 r8093 105 105 * Creates the file name for the cached plugin list and the icon cache file. 106 106 * 107 * @param pluginDir directory of plugin for data storage 107 108 * @param site the name of the site 108 * @param type icon cache or plugin list cache109 109 * @return the file name for the cache file 110 110 */
Note:
See TracChangeset
for help on using the changeset viewer.