summaryrefslogtreecommitdiff
path: root/editor/actions/export.ml
diff options
context:
space:
mode:
Diffstat (limited to 'editor/actions/export.ml')
-rwxr-xr-xeditor/actions/export.ml7
1 files changed, 4 insertions, 3 deletions
diff --git a/editor/actions/export.ml b/editor/actions/export.ml
index 71e3b64..657e0da 100755
--- a/editor/actions/export.ml
+++ b/editor/actions/export.ml
@@ -1,4 +1,5 @@
module Js = Js_of_ocaml.Js
+module App = Editor_app
module M = struct
@@ -31,8 +32,8 @@ end
(** Create a new element *)
let create
- : unit -> State.event
+ : unit -> App.event
= fun () ->
- State.E
+ App.E
( ()
- , (module M : State.Event with type t = M.t ))
+ , (module M : App.Event with type t = M.t ))