src: transform all old writable in annotations
[nit.git] / lib / mnit / mnit_app.nit
index 4c003a6..9987b8c 100644 (file)
@@ -30,10 +30,10 @@ redef class App
 
        # Display to use by apps
        # Is null if the display is not available or not yet ready
-       var display: nullable D protected writable = null
+       var display: nullable D = null is protected writable
 
        # Received quit order
-       var quit: Bool writable = false
+       var quit: Bool = false is writable
 
        # App is visible? (vs minimized or in background)
        fun visible: Bool is abstract