diff --git a/ILSpy/FilterSettings.cs b/ILSpy/FilterSettings.cs
index 1c7224fc5..5bbbbcab1 100644
--- a/ILSpy/FilterSettings.cs
+++ b/ILSpy/FilterSettings.cs
@@ -47,7 +47,7 @@ namespace ICSharpCode.ILSpy
public FilterSettings(XElement element)
{
this.ShowApiLevel = (ApiVisibility?)(int?)element.Element("ShowAPILevel") ?? ApiVisibility.PublicAndInternal;
- this.ShowApiInherited = (bool?)element.Element("ShowAPIInherited") ?? false;
+ this.ShowBaseApi = (bool?)element.Element("ShowBaseAPI") ?? false;
this.Language = Languages.GetLanguage((string)element.Element("Language"));
this.LanguageVersion = Language.LanguageVersions.FirstOrDefault(v => v.Version == (string)element.Element("LanguageVersion"));
if (this.LanguageVersion == default(LanguageVersion))
@@ -59,7 +59,7 @@ namespace ICSharpCode.ILSpy
return new XElement(
"FilterSettings",
new XElement("ShowAPILevel", (int)this.ShowApiLevel),
- new XElement("ShowAPIInherited", this.ShowApiInherited),
+ new XElement("ShowBaseAPI", this.ShowBaseApi),
new XElement("Language", this.Language.Name),
new XElement("LanguageVersion", this.LanguageVersion?.Version)
);
@@ -144,15 +144,15 @@ namespace ICSharpCode.ILSpy
}
}
- bool showApiInherited;
+ bool showBaseApi;
- public bool ShowApiInherited {
- get { return showApiInherited; }
+ public bool ShowBaseApi {
+ get { return showBaseApi; }
set {
- if (showApiInherited != value)
+ if (showBaseApi != value)
{
- showApiInherited = value;
- OnPropertyChanged(nameof(ShowApiInherited));
+ showBaseApi = value;
+ OnPropertyChanged(nameof(ShowBaseApi));
}
}
}
diff --git a/ILSpy/MainWindow.xaml b/ILSpy/MainWindow.xaml
index 449a6f83d..8b758993d 100644
--- a/ILSpy/MainWindow.xaml
+++ b/ILSpy/MainWindow.xaml
@@ -138,7 +138,7 @@
-
+