From eba23048ca2d6dd1b934e11dc426093e5b2134c7 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 10 Aug 2009 23:08:22 +0100 Subject: Replace the Replaceable modules name --- .../RegionModulesController/RegionModulesControllerPlugin.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs') diff --git a/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs b/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs index 6331519..f30a18b 100644 --- a/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs +++ b/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs @@ -160,7 +160,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController List sharedlist = new List(); foreach (ISharedRegionModule module in m_sharedInstances) { - Type replaceableInterface = module.ReplacableInterface; + Type replaceableInterface = module.ReplaceableInterface; if (replaceableInterface != null) { MethodInfo mii = mi.MakeGenericMethod(replaceableInterface); @@ -190,7 +190,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController { INonSharedRegionModule module = (INonSharedRegionModule)Activator.CreateInstance(type); - Type replaceableInterface = module.ReplacableInterface; + Type replaceableInterface = module.ReplaceableInterface; if (replaceableInterface != null) { MethodInfo mii = mi.MakeGenericMethod(replaceableInterface); @@ -226,7 +226,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController foreach (ISharedRegionModule module in deferredSharedModules.Values) { - Type replaceableInterface = module.ReplacableInterface; + Type replaceableInterface = module.ReplaceableInterface; MethodInfo mii = mi.MakeGenericMethod(replaceableInterface); if (mii.Invoke(scene, new object[0]) != null) @@ -247,7 +247,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController List deferredlist = new List(); foreach (INonSharedRegionModule module in deferredNonSharedModules.Values) { - Type replaceableInterface = module.ReplacableInterface; + Type replaceableInterface = module.ReplaceableInterface; if (replaceableInterface != null) { MethodInfo mii = mi.MakeGenericMethod(replaceableInterface); -- cgit v1.1