diff options
Diffstat (limited to 'indra/newview/lldebugview.h')
-rw-r--r-- | indra/newview/lldebugview.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/indra/newview/lldebugview.h b/indra/newview/lldebugview.h index 189efd3a3f..9cf2a59a0a 100644 --- a/indra/newview/lldebugview.h +++ b/indra/newview/lldebugview.h @@ -40,9 +40,7 @@ // declarations class LLButton; -class LLToolView; class LLStatusPanel; -class LLFrameStatView; class LLFastTimerView; class LLMemoryView; class LLConsole; @@ -52,10 +50,18 @@ class LLFloaterStats; class LLDebugView : public LLView { public: - LLDebugView(const std::string& name, const LLRect &rect); + struct Params : public LLInitParam::Block<Params, LLView::Params> + { + Params() + { + mouse_opaque = false; + } + }; + LLDebugView(const Params&); ~LLDebugView(); - LLFrameStatView* mFrameStatView; + void setStatsVisible(BOOL visible); + LLFastTimerView* mFastTimerView; LLMemoryView* mMemoryView; LLConsole* mDebugConsolep; |