diff options
| author | prep <prep@lindenlab.com> | 2013-06-03 16:10:46 -0400 |
|---|---|---|
| committer | prep <prep@lindenlab.com> | 2013-06-03 16:10:46 -0400 |
| commit | c81b685b4217b3c321815e1993d39fb0b479a767 (patch) | |
| tree | 5faba0482e6b9b8c74f9ebda861b294779e33e9b /indra/llui/llpanel.cpp | |
| parent | 7f2cf1fa9cf7c09af8eeab3aa077eb0a9922d631 (diff) | |
Fix for sh-4221 Sometimes ctrl+q needed to be hit twice
Diffstat (limited to 'indra/llui/llpanel.cpp')
| -rwxr-xr-x | indra/llui/llpanel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llpanel.cpp b/indra/llui/llpanel.cpp index 7b7920f866..b0bdbcb7d1 100755 --- a/indra/llui/llpanel.cpp +++ b/indra/llui/llpanel.cpp @@ -354,11 +354,11 @@ void LLPanel::handleVisibilityChange ( BOOL new_visibility ) } -void LLPanel::handleCloseConfirmation( ) +void LLPanel::handleCloseConfirmation( bool app_quitting) { if (mCloseConfirmationSignal) { - (*mCloseConfirmationSignal)(this, LLSD() ); + (*mCloseConfirmationSignal)(this, LLSD( app_quitting ) ); } } void LLPanel::setFocus(BOOL b) |
