]> matita.cs.unibo.it Git - helm.git/commitdiff
* variant types changed for selection mode
authorLuca Padovani <luca.padovani@unito.it>
Wed, 29 Oct 2003 09:17:30 +0000 (09:17 +0000)
committerLuca Padovani <luca.padovani@unito.it>
Wed, 29 Oct 2003 09:17:30 +0000 (09:17 +0000)
helm/gTopLevel/disambiguate.ml
helm/gTopLevel/disambiguate.mli

index ce41208dd3ba2833f68b105376f56166a6300ae0..974e0b49e6655492aa4dd7a97b1c8b5043275b89 100644 (file)
@@ -46,7 +46,7 @@ module type Callbacks =
 
     val output_html : string -> unit
     val interactive_user_uri_choice :
-      selection_mode:[`SINGLE | `EXTENDED] ->
+      selection_mode:[`SINGLE | `MULTIPLE] ->
       ?ok:string ->
       ?enable_button_for_non_vars:bool ->
       title:string -> msg:string -> id:string -> string list -> string list
@@ -85,7 +85,7 @@ module Make(C:Callbacks) =
        | [uri] -> [uri]
        | _ ->
          C.interactive_user_uri_choice
-          ~selection_mode:`EXTENDED
+          ~selection_mode:`MULTIPLE
           ~ok:"Try every selection."
           ~enable_button_for_non_vars:true
           ~title:"Ambiguous input."
index 9fdfb8993dae6cdf8eaf7c57a97414d96259955b..0114ce27f4e985659ea6d41059a3a292cc312d17 100644 (file)
@@ -46,7 +46,7 @@ module type Callbacks =
 
     val output_html : string -> unit
     val interactive_user_uri_choice :
-      selection_mode:[`SINGLE | `EXTENDED] ->
+      selection_mode:[`SINGLE | `MULTIPLE] ->
       ?ok:string ->
       ?enable_button_for_non_vars:bool ->
       title:string -> msg:string -> id:string -> string list -> string list