Changeset 9075 in josm for trunk/src/org/openstreetmap/josm/gui
- Timestamp:
- 2015-11-30T23:38:27+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentPanel.java
r9059 r9075 175 175 private void alertNoPrimitivesTo(Collection<HistoryOsmPrimitive> primitives, String title, String helpTopic) { 176 176 HelpAwareOptionPane.showOptionDialog( 177 ChangesetContentPanel.this,177 this, 178 178 trn("<html>The selected object is not available in the current<br>" 179 179 + "edit layer ''{0}''.</html>", -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTree.java
r8836 r9075 66 66 */ 67 67 protected Dialog getParentDialog() { 68 Component c = RelationTree.this;68 Component c = this; 69 69 while (c != null && !(c instanceof Dialog)) { 70 70 c = c.getParent(); -
trunk/src/org/openstreetmap/josm/gui/download/BoundingBoxSelection.java
r9059 r9075 154 154 Bounds b = OsmUrlToBounds.parse(tfOsmUrl.getText()); 155 155 if (b == null) return false; 156 gui.boundingBoxChanged(b, BoundingBoxSelection.this);156 gui.boundingBoxChanged(b, this); 157 157 updateBboxFields(b); 158 158 updateUrl(b); -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java
r8870 r9075 602 602 603 603 synchronized (this) { 604 file = ImageDisplay.this.file;605 image = ImageDisplay.this.image;606 visibleRect = ImageDisplay.this.visibleRect;604 file = this.file; 605 image = this.image; 606 visibleRect = this.visibleRect; 607 607 } 608 608 -
trunk/src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java
r8510 r9075 149 149 }; 150 150 int ret = HelpAwareOptionPane.showOptionDialog( 151 AdvancedOAuthPropertiesPanel.this,151 this, 152 152 tr( 153 153 "<html>JOSM is about to reset the OAuth settings to default values.<br>" -
trunk/src/org/openstreetmap/josm/gui/preferences/PreferenceTabbedPane.java
r9059 r9075 339 339 if (clazz.isInstance(setting)) { 340 340 final SubPreferenceSetting sub = (SubPreferenceSetting) setting; 341 final TabPreferenceSetting tab = sub.getTabPreferenceSetting( PreferenceTabbedPane.this);341 final TabPreferenceSetting tab = sub.getTabPreferenceSetting(this); 342 342 selectTabBy(new TabIdentifier() { 343 343 @Override
Note:
See TracChangeset
for help on using the changeset viewer.