From d1c4fc94e7cdec807558dd692c249c90519d1af1 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 19 May 2008 20:49:57 +0000 Subject: make the super class conveniance appearance stuff virtual so they can be overrided correctly by subclasses --- OpenSim/Data/MySQL/MySQLUserData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Data/MySQL/MySQLUserData.cs') diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs index cd5ac39..f7d5659 100644 --- a/OpenSim/Data/MySQL/MySQLUserData.cs +++ b/OpenSim/Data/MySQL/MySQLUserData.cs @@ -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); } -- cgit v1.1