diff options
author | Rye Cogtail <rye@lindenlab.com> | 2024-10-22 17:22:27 -0400 |
---|---|---|
committer | Rye Cogtail <rye@lindenlab.com> | 2024-10-31 01:52:24 -0400 |
commit | d425c0a28ec05fe655d91e34e5ea0ca9f2c26dd7 (patch) | |
tree | 5972b02f65dd9dbe7fcc70121580678893834e89 /indra/llwindow | |
parent | fcd8b53a573800f11bf0c5585acf89811e731740 (diff) |
Introduce NFDE file picker support for linux and SDL
Diffstat (limited to 'indra/llwindow')
-rw-r--r-- | indra/llwindow/llwindowsdl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index 4793ab4fc7..ae04a9c936 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -1949,9 +1949,9 @@ void LLWindowSDL::spawnWebBrowser(const std::string& escaped_url, bool async) LL_INFOS() << "spawn_web_browser returning." << LL_ENDL; } -void *LLWindowSDL::getPlatformWindow() +void* LLWindowSDL::getPlatformWindow() { - return nullptr; + return (void*)mWindow; } void LLWindowSDL::bringToFront() |