diff options
author | lbsa71 | 2009-02-12 10:16:11 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-12 10:16:11 +0000 |
commit | c3a4810e91a0357af9e8a9f0e43d450f3bb1b16f (patch) | |
tree | 79c6588848b4631ae3bf43217d9679272528d689 /OpenSim/Grid/UserServer/Main.cs | |
parent | * Applied some CCC (Code Convention Conformance) (diff) | |
download | opensim-SC_OLD-c3a4810e91a0357af9e8a9f0e43d450f3bb1b16f.zip opensim-SC_OLD-c3a4810e91a0357af9e8a9f0e43d450f3bb1b16f.tar.gz opensim-SC_OLD-c3a4810e91a0357af9e8a9f0e43d450f3bb1b16f.tar.bz2 opensim-SC_OLD-c3a4810e91a0357af9e8a9f0e43d450f3bb1b16f.tar.xz |
* Turned RegionProfileService non-static
Diffstat (limited to 'OpenSim/Grid/UserServer/Main.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/Main.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 3f75838..70aaea3 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs | |||
@@ -32,6 +32,7 @@ using System.Reflection; | |||
32 | using log4net; | 32 | using log4net; |
33 | using log4net.Config; | 33 | using log4net.Config; |
34 | using OpenMetaverse; | 34 | using OpenMetaverse; |
35 | using OpenSim.Data; | ||
35 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
36 | using OpenSim.Framework.Communications; | 37 | using OpenSim.Framework.Communications; |
37 | using OpenSim.Framework.Communications.Cache; | 38 | using OpenSim.Framework.Communications.Cache; |
@@ -167,7 +168,7 @@ namespace OpenSim.Grid.UserServer | |||
167 | protected virtual void StartupLoginService(IInterServiceInventoryServices inventoryService) | 168 | protected virtual void StartupLoginService(IInterServiceInventoryServices inventoryService) |
168 | { | 169 | { |
169 | m_loginService = new UserLoginService( | 170 | m_loginService = new UserLoginService( |
170 | m_userManager, inventoryService, new LibraryRootFolder(Cfg.LibraryXmlfile), Cfg, Cfg.DefaultStartupMsg); | 171 | m_userManager, inventoryService, new LibraryRootFolder(Cfg.LibraryXmlfile), Cfg, Cfg.DefaultStartupMsg, new RegionProfileService()); |
171 | } | 172 | } |
172 | 173 | ||
173 | protected virtual void AddHttpHandlers() | 174 | protected virtual void AddHttpHandlers() |