From d79e69d168997fd8329bca630899420963a666db Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 16 Jul 2007 18:44:30 +0000 Subject: * Since we're discussing it, applying the m_ convention on some members... --- OpenSim/Region/ClientStack/RegionApplicationBase.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'OpenSim/Region/ClientStack') diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index adf30bc..ec7eee4 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs @@ -42,16 +42,16 @@ namespace OpenSim.Region.ClientStack { public class RegionApplicationBase { - protected AssetCache AssetCache; - protected InventoryCache InventoryCache; - protected Dictionary clientCircuits = new Dictionary(); - protected DateTime startuptime; - protected NetworkServersInfo serversData; + protected AssetCache m_assetCache; + protected InventoryCache m_inventoryCache; + protected Dictionary m_clientCircuits = new Dictionary(); + protected DateTime m_startuptime; + protected NetworkServersInfo m_serversData; protected List m_udpServer = new List(); - protected List regionData = new List(); + protected List m_regionData = new List(); protected List m_localWorld = new List(); - protected BaseHttpServer httpServer; + protected BaseHttpServer m_httpServer; protected List AuthenticateSessionsHandler = new List(); protected LogBase m_log; -- cgit v1.1