summaryrefslogtreecommitdiff
path: root/altosui/AltosGraphUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'altosui/AltosGraphUI.java')
-rw-r--r--altosui/AltosGraphUI.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java
index 16b0fd48..be52bd4e 100644
--- a/altosui/AltosGraphUI.java
+++ b/altosui/AltosGraphUI.java
@@ -178,8 +178,8 @@ public class AltosGraphUI extends JFrame
}
}
- public AltosGraphUI(AltosRecordIterable records) throws InterruptedException, IOException {
- super("Altos Graph");
+ public AltosGraphUI(AltosRecordIterable records, String name) throws InterruptedException, IOException {
+ super(String.format("Altos Graph %s", name));
AltosDataPointReader reader = new AltosDataPointReader (records);
if (reader == null)