Fixed compilation

This commit is contained in:
Sergii Pylypenko
2013-05-13 20:45:00 +03:00
parent 9e91e38d62
commit 979ac8e5f6
2 changed files with 3 additions and 3 deletions

View File

@@ -1733,7 +1733,7 @@ class Settings
}
for( int i = 0; i < Math.min(6, Globals.AppTouchscreenKeyboardKeysNames.length); i++ )
items[i+2] += " - " + Globals.AppTouchscreenKeyboardKeysNames[i];
items[i+2] = items[i+2] + " - " + Globals.AppTouchscreenKeyboardKeysNames[i];
AlertDialog.Builder builder = new AlertDialog.Builder(p);
builder.setTitle(p.getResources().getString(R.string.remap_screenkb));
@@ -1776,7 +1776,7 @@ class Settings
};
for( int i = 0; i < Math.min(6, Globals.AppTouchscreenKeyboardKeysNames.length); i++ )
items[i] += " - " + Globals.AppTouchscreenKeyboardKeysNames[i];
items[i] = items[i] + " - " + Globals.AppTouchscreenKeyboardKeysNames[i];
if( currentButton >= Globals.RemapScreenKbKeycode.length )
{