am d692c2c6
: Merge "Fix EventLog string class problem in onOptionMenuSelected"
* commit 'd692c2c6856072a3ec8bec4550466d15a9fef8d7': Fix EventLog string class problem in onOptionMenuSelected
This commit is contained in:
@ -2544,7 +2544,7 @@ public class Activity extends ContextThemeWrapper
|
|||||||
// Put event logging here so it gets called even if subclass
|
// Put event logging here so it gets called even if subclass
|
||||||
// doesn't call through to superclass's implmeentation of each
|
// doesn't call through to superclass's implmeentation of each
|
||||||
// of these methods below
|
// of these methods below
|
||||||
EventLog.writeEvent(50000, 0, item.getTitleCondensed());
|
EventLog.writeEvent(50000, 0, item.getTitleCondensed().toString());
|
||||||
if (onOptionsItemSelected(item)) {
|
if (onOptionsItemSelected(item)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -2562,7 +2562,7 @@ public class Activity extends ContextThemeWrapper
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
case Window.FEATURE_CONTEXT_MENU:
|
case Window.FEATURE_CONTEXT_MENU:
|
||||||
EventLog.writeEvent(50000, 1, item.getTitleCondensed());
|
EventLog.writeEvent(50000, 1, item.getTitleCondensed().toString());
|
||||||
if (onContextItemSelected(item)) {
|
if (onContextItemSelected(item)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user