Rename UserProfile{ -> Data}

This commit is contained in:
Bartłomiej Dach
2023-01-09 17:37:28 +01:00
parent 4dd7727f71
commit fdf0d4bd62
30 changed files with 52 additions and 52 deletions

View File

@ -29,7 +29,7 @@ namespace osu.Game.Overlays.Profile.Header
private FillFlowContainer? fillFlow;
private RankGraph rankGraph = null!;
public readonly Bindable<UserProfile?> UserProfile = new Bindable<UserProfile?>();
public readonly Bindable<UserProfileData?> UserProfile = new Bindable<UserProfileData?>();
private bool expanded = true;
@ -170,7 +170,7 @@ namespace osu.Game.Overlays.Profile.Header
};
}
private void updateDisplay(UserProfile? userProfile)
private void updateDisplay(UserProfileData? userProfile)
{
var user = userProfile?.User;