From 6177a93a74c42a1ff9d3f7c8979678bb1b81a547 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Mon, 10 Oct 2016 15:51:54 +0300 Subject: [PATCH] fix example1 build under 64bit --- examples/example1/src/example1.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example1/src/example1.d b/examples/example1/src/example1.d index d32e4b8f..59e2416d 100644 --- a/examples/example1/src/example1.d +++ b/examples/example1/src/example1.d @@ -516,7 +516,7 @@ extern (C) int UIAppMain(string[] args) { grid.layoutWidth(FILL_PARENT); grid.layoutHeight(FILL_PARENT); foreach (index, month; ["January"d, "February"d, "March"d, "April"d, "May"d, "June"d, "July"d, "August"d, "September"d, "October"d, "November"d, "December"d]) - grid.setColTitle(index, month); + grid.setColTitle(cast(int)index, month); for (int y = 0; y < 10; y++) grid.setRowTitle(y, to!dstring(y+1)); //grid.alignment = Align.Right;