Fix warnings in helloworld example.

This commit is contained in:
and3md 2017-08-16 22:27:46 +02:00
parent 8a7245ba24
commit 9da549ebd8
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ extern (C) int UIAppMain(string[] args) {
};
// show message box with content of editors
window.mainWidget.childById!Button("btnOk").click = delegate(Widget w) {
window.showMessageBox(UIString("Ok button pressed"d),
UIString("Editors content\nEdit1: "d ~ edit1.text ~ "\nEdit2: "d ~ edit2.text));
window.showMessageBox(UIString.fromRaw("Ok button pressed"d),
UIString.fromRaw("Editors content\nEdit1: "d ~ edit1.text ~ "\nEdit2: "d ~ edit2.text));
return true;
};