зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1116693 - Use a simpler setter for mTitle in the GeckoMenuItem constructors r=rnewman
This commit is contained in:
Родитель
a1d01313b5
Коммит
bea67c62d6
|
@ -59,14 +59,14 @@ public class GeckoMenuItem implements MenuItem {
|
|||
mMenu = menu;
|
||||
mId = id;
|
||||
mOrder = order;
|
||||
setTitle(titleRes);
|
||||
mTitle = mMenu.getResources().getString(titleRes);
|
||||
}
|
||||
|
||||
public GeckoMenuItem(GeckoMenu menu, int id, int order, CharSequence title) {
|
||||
mMenu = menu;
|
||||
mId = id;
|
||||
mOrder = order;
|
||||
setTitle(title);
|
||||
mTitle = title;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче