lib/app/ui: fix with #1311
authorAlexis Laferrière <alexis.laf@xymus.net>
Sat, 31 Oct 2015 21:08:30 +0000 (17:08 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Tue, 10 Nov 2015 03:18:00 +0000 (22:18 -0500)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/app/ui.nit

index fe32436..73c42c1 100644 (file)
@@ -146,7 +146,7 @@ abstract class View
        # Is this control enabled so the user can interact with it?
        #
        # By default, or if set to `null`, the control is enabled.
-       var enabled: nullable Bool is writable #, abstract FIXME with #1311
+       var enabled: nullable Bool is writable, abstract, autoinit
 end
 
 # A control with some `text`
@@ -156,7 +156,7 @@ abstract class TextView
        # Main `Text` of this control
        #
        # By default, or if set to `null`, no text is shown.
-       var text: nullable Text is writable #, abstract FIXME with #1311
+       var text: nullable Text is writable, abstract, autoinit
 end
 
 # A control for the user to enter custom `text`