umk: Fixed to compile

git-svn-id: svn://ultimatepp.org/upp/trunk@12626 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-12-20 09:52:04 +00:00
parent d022874e51
commit 105c300277
3 changed files with 4 additions and 4 deletions

View file

@ -102,7 +102,7 @@ void DrawTLText(Draw& draw, int x, int y, int cx, const wchar *text,
bool ak = false; bool ak = false;
start = q; start = q;
while(q < s && *q >= ' ') { while(q < s && *q >= ' ') {
if(akey && ToUpper(ToAscii(*q)) == akey && (apos == 0 || q - start + 1 == apos)) { if(akey && (int)ToUpper(ToAscii(*q)) == akey && (apos == 0 || q - start + 1 == apos)) {
ak = true; ak = true;
akey = 0; akey = 0;
break; break;

View file

@ -6,7 +6,9 @@ uses
ide\Core, ide\Core,
ide/Android, ide/Android,
ide/Java, ide/Java,
ide/Android; ide/Android,
Draw,
plugin/png;
file file
Builders.h options(BUILDER_OPTION) PCH, Builders.h options(BUILDER_OPTION) PCH,

View file

@ -28,8 +28,6 @@ void GccBuilder::CocoaAppBundle()
RealizeDir(icons); RealizeDir(icons);
PutConsole("Exporting bundle icons to " + icons); PutConsole("Exporting bundle icons to " + icons);
bool icons_dirty = false;
for(String fn : { for(String fn : {
"icon_16x16.png", "icon_16x16.png",
"icon_16x16@2x.png", "icon_16x16@2x.png",