From 05070cefa17fdef1b69893f0fe91e6b50892f2b5 Mon Sep 17 00:00:00 2001 From: oakes Date: Sun, 4 May 2014 18:57:42 -0400 Subject: [PATCH] Fix capitalization --- src/play_clj/ui.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/play_clj/ui.clj b/src/play_clj/ui.clj index 3d830e1..d91bb24 100644 --- a/src/play_clj/ui.clj +++ b/src/play_clj/ui.clj @@ -185,12 +185,12 @@ based on the file at `path`. (defmacro check-box! "Calls a single method on a `check-box`." [entity k & options] - `(u/call! ^Checkbox (u/get-obj ~entity :object) ~k ~@options)) + `(u/call! ^CheckBox (u/get-obj ~entity :object) ~k ~@options)) (defn check-box? "Returns true if `entity` is a `check-box`." [entity] - (isa? (type (u/get-obj entity :object)) Checkbox)) + (isa? (type (u/get-obj entity :object)) CheckBox)) ; container