diff options
author | Dr Scofield | 2009-04-16 12:10:50 +0000 |
---|---|---|
committer | Dr Scofield | 2009-04-16 12:10:50 +0000 |
commit | bd2ca2d9c1a8ea958255f1f8e9b31c46754cce26 (patch) | |
tree | 0a792cedcde02fbf7c017b0a8a0c4a6bf0b14f5b /OpenSim/Region/Application/OpenSim.cs | |
parent | move inclusion of Makefile.local to the end to avoid surprising results (diff) | |
download | opensim-SC_OLD-bd2ca2d9c1a8ea958255f1f8e9b31c46754cce26.zip opensim-SC_OLD-bd2ca2d9c1a8ea958255f1f8e9b31c46754cce26.tar.gz opensim-SC_OLD-bd2ca2d9c1a8ea958255f1f8e9b31c46754cce26.tar.bz2 opensim-SC_OLD-bd2ca2d9c1a8ea958255f1f8e9b31c46754cce26.tar.xz |
- turn private m_gui into protected m_gui to allow manipulation in
derived classes
- make OpenSimBackground inherit from OpenSim instead of OpenSimBase
so that it will have a MainConsole instance and we can use console
commands, setting m_gui to false
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 8ebf144..bafa736 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -51,10 +51,10 @@ namespace OpenSim | |||
51 | 51 | ||
52 | protected string m_startupCommandsFile; | 52 | protected string m_startupCommandsFile; |
53 | protected string m_shutdownCommandsFile; | 53 | protected string m_shutdownCommandsFile; |
54 | protected bool m_gui = false; | ||
54 | 55 | ||
55 | private string m_timedScript = "disabled"; | 56 | private string m_timedScript = "disabled"; |
56 | private Timer m_scriptTimer; | 57 | private Timer m_scriptTimer; |
57 | private bool m_gui = false; | ||
58 | 58 | ||
59 | public OpenSim(IConfigSource configSource) : base(configSource) | 59 | public OpenSim(IConfigSource configSource) : base(configSource) |
60 | { | 60 | { |