Changeset 34734 in osm for applications/editors/josm/plugins/indoorhelper/src/views/ToolBoxView.java
- Timestamp:
- 2018-11-22T00:21:27+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/src/views/ToolBoxView.java
r34179 r34734 26 26 import java.awt.GridBagLayout; 27 27 import java.awt.Insets; 28 import java.awt.TextField;29 28 import java.awt.event.ActionListener; 30 29 import java.awt.event.FocusEvent; … … 470 469 if (getLevelCheckBoxStatus() == false) { 471 470 if (!levelTag.equals("")) { 472 this.levelLabel.setText( (tr("Working level: {0}", levelTag)));471 this.levelLabel.setText(tr("Working level: {0}", levelTag)); 473 472 } else { 474 this.levelLabel.setText( (tr("Working level: NONE")));473 this.levelLabel.setText(tr("Working level: NONE")); 475 474 } 476 475 } else { 477 this.levelLabel.setText( (tr("Working level: NONE")));476 this.levelLabel.setText(tr("Working level: NONE")); 478 477 } 479 478 } … … 505 504 } 506 505 507 506 508 507 /** 509 508 * Clears the text boxes and sets an empty String.
Note:
See TracChangeset
for help on using the changeset viewer.