This commit is contained in:
Vadim Lopatin 2014-12-05 19:51:57 +03:00
parent 9ee63808f8
commit cca65bf61b
2 changed files with 12 additions and 1 deletions

View File

@ -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.

View File

@ -733,7 +733,7 @@ class Win32Platform : Platform {
lptstrCopy[w.length] = 0;
GlobalUnlock(hglbCopy);
SetClipboardData(CF_UNICODETEXT, hglbCopy);
CloseClipboard();
CloseClipboard();
}
}