fix build
This commit is contained in:
parent
38af1f4e1f
commit
fe774b6259
1 changed files with 2 additions and 4 deletions
|
@ -181,9 +181,8 @@ public class AppearanceWidgetsFactory {
|
|||
try {
|
||||
Field f = R.drawable.class.getField("widget_" + p.getAttrName().toLowerCase());
|
||||
icon = f.getInt(null);
|
||||
//TODO: Use "widget_no_icon" where no widget icon exists
|
||||
} catch(Exception e){
|
||||
Field f = R.drawable.class.getField("widget_no_icon");
|
||||
icon = f.getInt(null);
|
||||
}
|
||||
MapWidgetRegistry.MapWidgetRegInfo w = mapInfoControls.registerAppearanceWidget(icon, propertyName, "rend_"+p.getAttrName(), pref, categoryName);
|
||||
w.setStateChangeListener(new Runnable() {
|
||||
|
@ -201,9 +200,8 @@ public class AppearanceWidgetsFactory {
|
|||
try {
|
||||
Field f = R.drawable.class.getField("widget_" + p.getAttrName().toLowerCase());
|
||||
icon = f.getInt(null);
|
||||
//TODO: Use "widget_no_icon" where no widget icon exists
|
||||
} catch(Exception e){
|
||||
Field f = R.drawable.class.getField("widget_no_icon");
|
||||
icon = f.getInt(null);
|
||||
}
|
||||
MapWidgetRegistry.MapWidgetRegInfo w = mapInfoControls.registerAppearanceWidget(icon, propertyName, "rend_"+p.getAttrName(), pref, categoryName);
|
||||
w.setStateChangeListener(new Runnable() {
|
||||
|
|
Loading…
Reference in a new issue