diff options
-rw-r--r-- | linden/indra/llcommon/llmortician.cpp | 6 | ||||
-rw-r--r-- | linden/indra/llcommon/llmortician.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/llcommon/llmortician.cpp b/linden/indra/llcommon/llmortician.cpp index c800b65..2909f45 100644 --- a/linden/indra/llcommon/llmortician.cpp +++ b/linden/indra/llcommon/llmortician.cpp | |||
@@ -74,3 +74,9 @@ void LLMortician::setZealous(BOOL b) | |||
74 | { | 74 | { |
75 | sDestroyImmediate = b; | 75 | sDestroyImmediate = b; |
76 | } | 76 | } |
77 | |||
78 | // static | ||
79 | BOOL LLMortician::getZealous() | ||
80 | { | ||
81 | return sDestroyImmediate; | ||
82 | } | ||
diff --git a/linden/indra/llcommon/llmortician.h b/linden/indra/llcommon/llmortician.h index fcda3df..247632f 100644 --- a/linden/indra/llcommon/llmortician.h +++ b/linden/indra/llcommon/llmortician.h | |||
@@ -46,6 +46,7 @@ public: | |||
46 | 46 | ||
47 | // sets destroy immediate true | 47 | // sets destroy immediate true |
48 | static void setZealous(BOOL b); | 48 | static void setZealous(BOOL b); |
49 | static BOOL getZealous(); | ||
49 | 50 | ||
50 | private: | 51 | private: |
51 | static BOOL sDestroyImmediate; | 52 | static BOOL sDestroyImmediate; |