diff --git a/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java b/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java index c566bf4701..2d4a0c96c5 100644 --- a/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/HelpActivity.java @@ -172,7 +172,7 @@ public class HelpActivity extends OsmandActionBarActivity implements AdapterView "feature_articles/technical-articles.html")); contextMenuAdapter.addItem(createItem(R.string.versions_item, NULL_ID, "feature_articles/changes.html")); - contextMenuAdapter.addItem(createItem(R.string.what_is_new_item, NULL_ID, + contextMenuAdapter.addItem(createItem(R.string.what_is_new, NULL_ID, "feature_articles/blog.html")); String releasedate = ""; diff --git a/OsmAnd/src/net/osmand/plus/settings/backend/OsmandSettings.java b/OsmAnd/src/net/osmand/plus/settings/backend/OsmandSettings.java index 1bb9d6e987..b3f5db026d 100644 --- a/OsmAnd/src/net/osmand/plus/settings/backend/OsmandSettings.java +++ b/OsmAnd/src/net/osmand/plus/settings/backend/OsmandSettings.java @@ -36,13 +36,13 @@ import net.osmand.plus.api.SettingsAPI.SettingsEditor; import net.osmand.plus.api.SettingsAPIImpl; import net.osmand.plus.audionotes.NotesSortByMode; import net.osmand.plus.dialogs.RateUsBottomSheetDialogFragment.RateUsState; +import net.osmand.plus.helpers.AvoidSpecificRoads.AvoidRoadInfo; +import net.osmand.plus.helpers.SearchHistoryHelper; import net.osmand.plus.helpers.enums.AngularConstants; import net.osmand.plus.helpers.enums.AutoZoomMap; -import net.osmand.plus.helpers.AvoidSpecificRoads.AvoidRoadInfo; import net.osmand.plus.helpers.enums.DayNightMode; import net.osmand.plus.helpers.enums.DrivingRegion; import net.osmand.plus.helpers.enums.MetricsConstants; -import net.osmand.plus.helpers.SearchHistoryHelper; import net.osmand.plus.helpers.enums.SpeedConstants; import net.osmand.plus.helpers.enums.TracksSortByMode; import net.osmand.plus.mapillary.MapillaryPlugin; @@ -1126,10 +1126,10 @@ public class OsmandSettings { new StringPreference(this, "user_password", "").makeGlobal(); public final OsmandPreference USER_ACCESS_TOKEN = - new StringPreference("user_access_token", "").makeGlobal(); + new StringPreference(this, "user_access_token", "").makeGlobal(); public final OsmandPreference USER_ACCESS_TOKEN_SECRET = - new StringPreference("user_access_token_secret", "").makeGlobal(); + new StringPreference(this, "user_access_token_secret", "").makeGlobal(); // this value boolean is synchronized with settings_pref.xml preference offline POI/Bugs edition public final OsmandPreference OFFLINE_EDITION = new BooleanPreference(this, "offline_osm_editing", true).makeGlobal();