diff options
author | Melanie Thielker | 2016-06-21 01:46:38 +0200 |
---|---|---|
committer | Melanie Thielker | 2016-06-21 01:46:38 +0200 |
commit | 8e40bb6fb7d0d25b1c2f808bb326db858da2bb65 (patch) | |
tree | 3b101e2c31aa1dacb232a8f708869683baa8646b /OpenSim/Capabilities/Handlers/GetDisplayNames | |
parent | Split IM handling so an inheriting module can cange names if required. (diff) | |
download | opensim-SC-8e40bb6fb7d0d25b1c2f808bb326db858da2bb65.zip opensim-SC-8e40bb6fb7d0d25b1c2f808bb326db858da2bb65.tar.gz opensim-SC-8e40bb6fb7d0d25b1c2f808bb326db858da2bb65.tar.bz2 opensim-SC-8e40bb6fb7d0d25b1c2f808bb326db858da2bb65.tar.xz |
Make some more modules inheritable
Diffstat (limited to 'OpenSim/Capabilities/Handlers/GetDisplayNames')
-rw-r--r-- | OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs b/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs index f7f9da9..6665947 100644 --- a/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs +++ b/OpenSim/Capabilities/Handlers/GetDisplayNames/GetDisplayNamesHandler.cs | |||
@@ -55,9 +55,9 @@ namespace OpenSim.Capabilities.Handlers | |||
55 | { | 55 | { |
56 | private static readonly ILog m_log = | 56 | private static readonly ILog m_log = |
57 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 57 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
58 | private IUserManagement m_UserManagement; | 58 | protected IUserManagement m_UserManagement; |
59 | 59 | ||
60 | public GetDisplayNamesHandler(string path, IUserManagement umService, string name, string description) | 60 | public virtual GetDisplayNamesHandler(string path, IUserManagement umService, string name, string description) |
61 | : base("GET", path, name, description) | 61 | : base("GET", path, name, description) |
62 | { | 62 | { |
63 | m_UserManagement = umService; | 63 | m_UserManagement = umService; |
@@ -120,4 +120,4 @@ namespace OpenSim.Capabilities.Handlers | |||
120 | } | 120 | } |
121 | 121 | ||
122 | } | 122 | } |
123 | } \ No newline at end of file | 123 | } |