Merge "Fix issue #3392073: At times soft keyboard comes up in..." into honeycomb

This commit is contained in:
Dianne Hackborn 2011-01-27 22:48:58 -08:00 committed by Android (Google) Code Review
commit a2ba76d444

View File

@ -3703,9 +3703,9 @@ void ResTable::getConfigurations(Vector<ResTable_config>* configs) const
void ResTable::getLocales(Vector<String8>* locales) const void ResTable::getLocales(Vector<String8>* locales) const
{ {
Vector<ResTable_config> configs; Vector<ResTable_config> configs;
LOGD("calling getConfigurations"); LOGV("calling getConfigurations");
getConfigurations(&configs); getConfigurations(&configs);
LOGD("called getConfigurations size=%d", (int)configs.size()); LOGV("called getConfigurations size=%d", (int)configs.size());
const size_t I = configs.size(); const size_t I = configs.size();
for (size_t i=0; i<I; i++) { for (size_t i=0; i<I; i++) {
char locale[6]; char locale[6];