diff options
Diffstat (limited to 'indra/newview/lldebugview.h')
-rwxr-xr-x[-rw-r--r--] | indra/newview/lldebugview.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/indra/newview/lldebugview.h b/indra/newview/lldebugview.h index 5245f163c0..a6490c876c 100644..100755 --- a/indra/newview/lldebugview.h +++ b/indra/newview/lldebugview.h @@ -36,7 +36,6 @@ class LLButton; class LLStatusPanel; class LLFastTimerView; -class LLMemoryView; class LLConsole; class LLTextureView; class LLFloaterStats; @@ -48,19 +47,21 @@ public: { Params() { - mouse_opaque = false; + changeDefault(mouse_opaque, false); } }; + LLDebugView(const Params&); ~LLDebugView(); void init(); - + void draw(); + void setStatsVisible(BOOL visible); LLFastTimerView* mFastTimerView; - LLMemoryView* mMemoryView; LLConsole* mDebugConsolep; + LLView* mFloaterSnapRegion; }; extern LLDebugView* gDebugView; |