From cca65bf61b91abf753fbef928307b0d1bf7ac60a Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Fri, 5 Dec 2014 19:51:57 +0300 Subject: [PATCH] fixes --- README.md | 11 +++++++++++ src/dlangui/platforms/windows/winapp.d | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ec87126..bd946970 100644 --- a/README.md +++ b/README.md @@ -222,3 +222,14 @@ Hello World // run message loop return Platform.instance.enterMessageLoop(); } + + + +Sample project +------------------------------------------------------------ + +There is sample project which is using DLangUI. + +https://github.com/buggins/dlangide + +Attempt to write IDE using DLangUI. diff --git a/src/dlangui/platforms/windows/winapp.d b/src/dlangui/platforms/windows/winapp.d index 7d69b892..c57abe24 100644 --- a/src/dlangui/platforms/windows/winapp.d +++ b/src/dlangui/platforms/windows/winapp.d @@ -733,7 +733,7 @@ class Win32Platform : Platform { lptstrCopy[w.length] = 0; GlobalUnlock(hglbCopy); SetClipboardData(CF_UNICODETEXT, hglbCopy); - CloseClipboard(); + CloseClipboard(); } }