diff options
| author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2026-05-27 19:06:49 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-27 19:06:49 +0300 |
| commit | 1f65fa87c71c6e94fed74281e37bb4c7468cf0e8 (patch) | |
| tree | fe801eaece49362709b411e7811e172ce5a87b17 /indra/newview/llviewerwindow.cpp | |
| parent | 412509181814baad066425bd1bfdfe3d50b62324 (diff) | |
| parent | ae2f146167a2599dbaca1ef70aafef078c1c3849 (diff) | |
Merge pull request #5870 from secondlife/maxim/26.3-5368
#5368 add Leap API to query statistics
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
| -rw-r--r-- | indra/newview/llviewerwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 0f3f24d1af..dea96e2012 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -203,6 +203,7 @@ #include "llwindowlistener.h" #include "llviewerwindowlistener.h" +#include "llstatslistener.h" #include "llcleanup.h" #if LL_WINDOWS @@ -1886,6 +1887,7 @@ LLViewerWindow::LLViewerWindow(const Params& p) LLWindowListener::KeyboardGetter getter = [](){ return gKeyboard; }; mWindowListener = std::make_unique<LLWindowListener>(this, getter); mViewerWindowListener = std::make_unique<LLViewerWindowListener>(this); + mStatsListener = std::make_unique<LLStatsListener>(); mSystemChannel.reset(new LLNotificationChannel("System", "Visible", LLNotificationFilters::includeEverything)); mCommunicationChannel.reset(new LLCommunicationChannel("Communication", "Visible")); |
