From ea04031453d87b40d82ac5d44a2a566efc44a4f7 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 15 Mar 2017 20:53:48 -0400 Subject: [PATCH] fix deprecated name --- minigui.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minigui.d b/minigui.d index 6a31129..655f8d7 100644 --- a/minigui.d +++ b/minigui.d @@ -864,7 +864,7 @@ class Window : Widget { this(int width = 500, int height = 500, string title = null) { super(null); - win = new SimpleWindow(width, height, title, OpenGlOptions.no, Resizablity.allowResizing); + win = new SimpleWindow(width, height, title, OpenGlOptions.no, Resizability.allowResizing); this.width = win.width; this.height = win.height; this.parentWindow = this;