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/format/file/HtmlFormat.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/timeflow/format/file/HtmlFormat.java b/timeflow/format/file/HtmlFormat.java
index 3792f28..b431001 100755
--- a/timeflow/format/file/HtmlFormat.java
+++ b/timeflow/format/file/HtmlFormat.java
@@ -9,7 +9,7 @@
 
 public class HtmlFormat implements Export
 {
-        TFModel model;
+        TimeflowModel model;
         java.util.List<Field> fields;
         Field title;
 
@@ -17,12 +17,12 @@
         {
         }
 
-        public HtmlFormat(TFModel model)
+        public HtmlFormat(TimeflowModel model)
         {
                 setModel(model);
         }
 
-        public void setModel(TFModel model)
+        public void setModel(TimeflowModel model)
         {
                 this.model = model;
                 fields = model.getDB().getFields();
@@ -30,7 +30,7 @@
         }
 
         @Override
-        public void export(TFModel model, BufferedWriter out) throws Exception
+        public void export(TimeflowModel model, BufferedWriter out) throws Exception
         {
                 setModel(model);
                 out.write(makeHeader());

--
Gitblit v1.6.2