From 725a98ea6133fe7741ac1ada32d53f7978bfede0 Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Fri, 20 Apr 2018 20:27:29 +0200 Subject: Update dependencies --- src/odf/odfLoader.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/odf') diff --git a/src/odf/odfLoader.ml b/src/odf/odfLoader.ml index 06eba38..4abe49f 100755 --- a/src/odf/odfLoader.ml +++ b/src/odf/odfLoader.ml @@ -129,14 +129,14 @@ let load catalog source = begin let sheet = Sheet.create catalog in let cache = Hashtbl.create 10 in - let table = Base.String_dict.of_alist_exn [ + let table = String_dict.of_alist_exn [ ((NS.text ^ "p"), build_p); ((NS.table ^ "table-cell"), build_cell cache); ((NS.table ^ "table-row"), build_row sheet (ref 1)) ] in let el (((ns, name), attributes):Xmlm.tag) childs = begin - match Base.String_dict.find table (ns ^ name) with + match String_dict.find table (ns ^ name) with | Some f -> f attributes childs | None -> Unit end in -- cgit v1.2.3