From 79045abe685efef2c497b6cae97601689186153f Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 24 Sep 2007 01:16:21 +0000 Subject: * Renamed stuff on UserManagerBase to get implicit implementation of IUserServices (instead of stubs) --- OpenSim/Region/Communications/Local/LocalLoginService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Communications/Local/LocalLoginService.cs') diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 3c43d29..9c15742 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs @@ -33,7 +33,7 @@ namespace OpenSim.Region.Communications.Local public override UserProfileData GetTheUser(string firstname, string lastname) { - UserProfileData profile = this.m_userManager.getUserProfile(firstname, lastname); + UserProfileData profile = this.m_userManager.GetUserProfile(firstname, lastname); if (profile != null) { @@ -46,7 +46,7 @@ namespace OpenSim.Region.Communications.Local Console.WriteLine("No User account found so creating a new one "); this.m_userManager.AddUserProfile(firstname, lastname, "test", defaultHomeX, defaultHomeY); - profile = this.m_userManager.getUserProfile(firstname, lastname); + profile = this.m_userManager.GetUserProfile(firstname, lastname); if (profile != null) { m_Parent.InvenServices.CreateNewUserInventory(profile.UUID); -- cgit v1.1