Skip to content

Commit 62fc494

Browse files
author
Matt Clarke
authored
Merge pull request #351 from ISISComputingGroup/Ticket1596_Clarify_beam_view_terminology
Clarify that stats refers to statistics
2 parents 5ce0704 + c2c7f72 commit 62fc494

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

base/uk.ac.stfc.isis.ibex.ui.beamstatus/src/uk/ac/stfc/isis/ibex/ui/beamstatus/views/BeamStatusPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ public BeamStatusPanel(Composite parent, int style) {
5858
newsLabel.setText("News");
5959
newsLabel.setFont(titleFont);
6060

61-
McrNewsPanel newsPanel = new McrNewsPanel(content, SWT.NONE);
61+
new McrNewsPanel(content, SWT.NONE);
6262

6363
Label statsLabel = new Label(content, SWT.NONE);
64-
statsLabel.setText("Beam Stats");
64+
statsLabel.setText("Beam statistics");
6565
statsLabel.setFont(titleFont);
6666

6767
StatsPanel statsPanel = new StatsPanel(content, SWT.V_SCROLL);

base/uk.ac.stfc.isis.ibex.ui.beamstatus/src/uk/ac/stfc/isis/ibex/ui/beamstatus/views/StatsPanel.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
import org.eclipse.swt.widgets.ExpandItem;
2828

2929
/**
30-
* The parent composite for the beam stats widgets.
31-
*
30+
* The parent composite for the beam statistics widgets.
3231
*/
3332
@SuppressWarnings("checkstyle:magicnumber")
3433
public class StatsPanel extends Composite {

0 commit comments

Comments
 (0)