diff options
author | Oz Linden <oz@lindenlab.com> | 2016-04-08 11:32:48 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-04-08 11:32:48 -0400 |
commit | ed38b5c9235b35cc4aa7448be2897c5fffbc684e (patch) | |
tree | 5091ca719379258f0cc22f3866bdc757d1727b36 /indra/win_crash_logger | |
parent | f0107eb8aae46a928b0b3e6564cc4ed3031e1271 (diff) | |
parent | 2446fab3746bfef453ec8e3d5a31b30e8f3f91e1 (diff) |
merge changes for MAINT-5974
Diffstat (limited to 'indra/win_crash_logger')
-rw-r--r-- | indra/win_crash_logger/llcrashloggerwindows.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/indra/win_crash_logger/llcrashloggerwindows.cpp b/indra/win_crash_logger/llcrashloggerwindows.cpp index 51e70f95b6..23c29e6b18 100644 --- a/indra/win_crash_logger/llcrashloggerwindows.cpp +++ b/indra/win_crash_logger/llcrashloggerwindows.cpp @@ -171,22 +171,6 @@ bool handle_button_click(WORD button_id) return false; } - // See if "do this next time" is checked and save state - S32 crash_behavior = CRASH_BEHAVIOR_ASK; - LRESULT result = SendDlgItemMessage(gHwndReport, IDC_CHECK_AUTO, BM_GETCHECK, 0, 0); - if (result == BST_CHECKED) - { - if (button_id == IDOK) - { - crash_behavior = CRASH_BEHAVIOR_ALWAYS_SEND; - } - else if (button_id == IDCANCEL) - { - crash_behavior = CRASH_BEHAVIOR_NEVER_SEND; - } - ((LLCrashLoggerWindows*)LLCrashLogger::instance())->saveCrashBehaviorSetting(crash_behavior); - } - // We're done with this dialog. gFirstDialog = FALSE; |