mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
umk: Fixed to compile
git-svn-id: svn://ultimatepp.org/upp/trunk@12626 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
d022874e51
commit
105c300277
3 changed files with 4 additions and 4 deletions
|
|
@ -102,7 +102,7 @@ void DrawTLText(Draw& draw, int x, int y, int cx, const wchar *text,
|
|||
bool ak = false;
|
||||
start = 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;
|
||||
akey = 0;
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,9 @@ uses
|
|||
ide\Core,
|
||||
ide/Android,
|
||||
ide/Java,
|
||||
ide/Android;
|
||||
ide/Android,
|
||||
Draw,
|
||||
plugin/png;
|
||||
|
||||
file
|
||||
Builders.h options(BUILDER_OPTION) PCH,
|
||||
|
|
|
|||
|
|
@ -28,8 +28,6 @@ void GccBuilder::CocoaAppBundle()
|
|||
RealizeDir(icons);
|
||||
PutConsole("Exporting bundle icons to " + icons);
|
||||
|
||||
bool icons_dirty = false;
|
||||
|
||||
for(String fn : {
|
||||
"icon_16x16.png",
|
||||
"icon_16x16@2x.png",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue