[TYPO]Better naming for ox-act-window-action(to -model)

This commit is contained in:
Fabien BOURGEOIS 2020-03-27 11:18:55 +01:00
parent 5927560259
commit a170137504
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
(defn ox-tree [&rest args] (xmln "tree" #*args))
(defn ox-search [&rest args] (xmln "search" #*args))
(defn ox-act-window [&rest args] (xmln "act_window" #*args))
(defn ox-act-window-action [model attrs]
(defn ox-act-window-model [model attrs]
" Build new act_window from model and args"
(setv model_und (.replace model "." "_")
model_cap (.join " " (lfor w (.split model ".") (.capitalize w)))