Rename settings::register_setting -> settings::register

This commit is contained in:
Max Brunsfeld 2023-05-17 15:06:11 -07:00
parent 2d5f03e148
commit 258723566f
12 changed files with 12 additions and 12 deletions

View file

@ -77,7 +77,7 @@ impl Setting for AutoUpdateSetting {
}
pub fn init(http_client: Arc<dyn HttpClient>, server_url: String, cx: &mut AppContext) {
settings::register_setting::<AutoUpdateSetting>(cx);
settings::register::<AutoUpdateSetting>(cx);
if let Some(version) = (*ZED_APP_VERSION).or_else(|| cx.platform().app_version().ok()) {
let auto_updater = cx.add_model(|cx| {