diff options
author | Callum Linden <callum@lindenlab.com> | 2021-09-28 15:24:42 -0700 |
---|---|---|
committer | Callum Linden <callum@lindenlab.com> | 2021-09-28 15:24:42 -0700 |
commit | 851fef680164e3472b0516e7237bbcc4a35bc5a3 (patch) | |
tree | 90e25cd4cdc3427e27638eb3032d06f723b3db87 /indra/llwindow/llwindow.cpp | |
parent | dc48e174c43edb770f3c2de0ac16adee5841d7ec (diff) |
SL-16102 Set window title to agent name (child of SL-15999 Support for low overhead, non interactive viewer sessions)
Diffstat (limited to 'indra/llwindow/llwindow.cpp')
-rw-r--r-- | indra/llwindow/llwindow.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llwindow/llwindow.cpp b/indra/llwindow/llwindow.cpp index 30bc743e72..67ef98d7b3 100644 --- a/indra/llwindow/llwindow.cpp +++ b/indra/llwindow/llwindow.cpp @@ -137,6 +137,12 @@ BOOL LLWindow::canDelete() return TRUE; } +//virtual +void LLWindow::setTitle(const std::string title) +{ + // the action happens in the platform specific impl +} + // virtual void LLWindow::incBusyCount() { |