aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL
diff options
context:
space:
mode:
authorSean Dague2008-05-19 20:49:57 +0000
committerSean Dague2008-05-19 20:49:57 +0000
commitd1c4fc94e7cdec807558dd692c249c90519d1af1 (patch)
tree5219bd3438410a9ff81773b47018b0ce7055b594 /OpenSim/Data/MySQL
parentfix crash in standalone mode for initial appearance setup (diff)
downloadopensim-SC_OLD-d1c4fc94e7cdec807558dd692c249c90519d1af1.zip
opensim-SC_OLD-d1c4fc94e7cdec807558dd692c249c90519d1af1.tar.gz
opensim-SC_OLD-d1c4fc94e7cdec807558dd692c249c90519d1af1.tar.bz2
opensim-SC_OLD-d1c4fc94e7cdec807558dd692c249c90519d1af1.tar.xz
make the super class conveniance appearance stuff virtual
so they can be overrided correctly by subclasses
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserData.cs4
1 files changed, 2 insertions, 2 deletions
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
656 /// Appearance 656 /// Appearance
657 /// TODO: stubs for now to get us to a compiling state gently 657 /// TODO: stubs for now to get us to a compiling state gently
658 // override 658 // override
659 public AvatarAppearance GetUserAppearance(LLUUID user) 659 override public AvatarAppearance GetUserAppearance(LLUUID user)
660 { 660 {
661 AvatarAppearance appearance = null; 661 AvatarAppearance appearance = null;
662 if (!m_appearanceMapper.TryGetValue(user.UUID, out appearance)) 662 if (!m_appearanceMapper.TryGetValue(user.UUID, out appearance))
@@ -667,7 +667,7 @@ namespace OpenSim.Data.MySQL
667 } 667 }
668 668
669 // override 669 // override
670 public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance) 670 override public void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance)
671 { 671 {
672 m_appearanceMapper.Update(user.UUID, appearance); 672 m_appearanceMapper.Update(user.UUID, appearance);
673 } 673 }