make the super class conveniance appearance stuff virtual

so they can be overrided correctly by subclasses
This commit is contained in:
Sean Dague
2008-05-19 20:49:57 +00:00
parent 7a52b35c57
commit d1c4fc94e7
2 changed files with 4 additions and 4 deletions

View File

@@ -656,7 +656,7 @@ namespace OpenSim.Data.MySQL
/// Appearance
/// TODO: stubs for now to get us to a compiling state gently
// override
public AvatarAppearance GetUserAppearance(LLUUID user)
override public AvatarAppearance GetUserAppearance(LLUUID user)
{
AvatarAppearance appearance = null;
if (!m_appearanceMapper.TryGetValue(user.UUID, out appearance))
@@ -667,7 +667,7 @@ namespace OpenSim.Data.MySQL
}
// override
public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
{
m_appearanceMapper.Update(user.UUID, appearance);
}