From a9e12f6c508810604c8c91ee15451776b08ce1a1 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 22 Apr 2019 07:41:56 -0400 Subject: [PATCH] Camera capslock fix --- timeflow/app/ui/ImportDelimitedPanel.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/timeflow/app/ui/ImportDelimitedPanel.java b/timeflow/app/ui/ImportDelimitedPanel.java index c626219..b05eb0f 100755 --- a/timeflow/app/ui/ImportDelimitedPanel.java +++ b/timeflow/app/ui/ImportDelimitedPanel.java @@ -24,7 +24,7 @@ SchemaPanel schemaPanel; boolean exitOnClose=false; // for testing! JScrollPane scroller; - TFModel model; + TimeflowModel model; JLabel numLinesLabel=new JLabel(); // for testing: @@ -33,7 +33,7 @@ System.out.println("Starting test of ImportEditor"); String file="data/probate.tsv"; String[][] data=DelimitedFormat.readArrayGuessDelim(file, System.out); - ImportDelimitedPanel editor=new ImportDelimitedPanel(new TFModel()); + ImportDelimitedPanel editor=new ImportDelimitedPanel(new TimeflowModel()); editor.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); editor.setFileName(file); editor.setData(data); @@ -42,7 +42,7 @@ editor.exitOnClose=true; } - public ImportDelimitedPanel(final TFModel model) + public ImportDelimitedPanel(final TimeflowModel model) { super("Import File"); this.model=model; -- Gitblit v1.6.2