diff options
author | James Cook <james@lindenlab.com> | 2009-12-04 17:33:36 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-12-04 17:33:36 -0800 |
commit | 7ff7709f9fd07de5cc9b039562d0fe3794f6ce36 (patch) | |
tree | e90e33e04ea849c5f4e6a9141af0da6370b2dc8f /indra/llwindow/llwindowwin32.cpp | |
parent | 738dabede22236e2f9618c402362ada88c785d68 (diff) |
Expose window minimize and restore in LLWindow interface.
Add secondlife:///app/login/reg handler for Reg-In-Client
Reviewed with Ambroff
Diffstat (limited to 'indra/llwindow/llwindowwin32.cpp')
-rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index c608c21d05..3b9c840e72 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -643,6 +643,7 @@ void LLWindowWin32::hide() ShowWindow(mWindowHandle, SW_HIDE); } +//virtual void LLWindowWin32::minimize() { setMouseClipping(FALSE); @@ -650,7 +651,7 @@ void LLWindowWin32::minimize() ShowWindow(mWindowHandle, SW_MINIMIZE); } - +//virtual void LLWindowWin32::restore() { ShowWindow(mWindowHandle, SW_RESTORE); |