Normand Briere
2019-04-22 a9e12f6c508810604c8c91ee15451776b08ce1a1
timeflow/app/ui/DateFieldPanel.java
....@@ -15,7 +15,7 @@
1515
1616 public class DateFieldPanel extends JPanel
1717 {
18
- TFModel model;
18
+ TimeflowModel model;
1919 int numRows;
2020 HashMap<String, Integer> numBad=new HashMap<String, Integer>();
2121 private static String[] mappable={VirtualField.START, VirtualField.END};
....@@ -23,7 +23,7 @@
2323 FieldMap[] panels=new FieldMap[mappable.length];
2424 JButton submit, cancel;
2525
26
- public DateFieldPanel(TFModel model, boolean hasButtons)
26
+ public DateFieldPanel(TimeflowModel model, boolean hasButtons)
2727 {
2828 this.model=model;
2929
....@@ -154,7 +154,7 @@
154154 return new Dimension(400,80+mappable.length*25);
155155 }
156156
157
- public static void popWindow(TFModel model)
157
+ public static void popWindow(TimeflowModel model)
158158 {
159159 final JFrame window=new JFrame("Date Fields");
160160 window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);