Skip to content

Commit 7f7ea46

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 7e92d90 + 6cccedc commit 7f7ea46

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

include/BugTrap.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,6 @@ typedef enum BUGTRAP_FLAGS_tag
107107
* provider.
108108
*/
109109
BTF_ATTACHREPORT = 0x004,
110-
/**
111-
* @brief By default BugTrap show a "More..." button to open
112-
* the advanced ui in the simple dialog. Enable this flag
113-
* hide the button.
114-
*/
115-
BTF_HIDEMOREBUTTON = 0x006,
116110
/**
117111
* @brief Set this flag to add list of all processes and loaded
118112
* modules to the report. Disable this option to speedup report
@@ -162,7 +156,13 @@ typedef enum BUGTRAP_FLAGS_tag
162156
* @brief Automatically restart the application after the crash has been
163157
* handled.
164158
*/
165-
BTF_RESTARTAPP = 0x200
159+
BTF_RESTARTAPP = 0x200,
160+
/**
161+
* @brief By default BugTrap show a "More..." button to open
162+
* the advanced ui in the simple dialog. Enable this flag
163+
* hide the button.
164+
*/
165+
BTF_HIDEMOREBUTTON = 0x400,
166166
}
167167
BUGTRAP_FLAGS;
168168

source/Examples/BugTrapTest/BugTrapTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ CBugTrapTestApp::CBugTrapTestApp()
3232
// Setup exception handler
3333
BT_SetAppName(_T("BugTrap Test"));
3434
BT_SetSupportEMail(_T("your@email.com"));
35-
BT_SetFlags(BTF_DETAILEDMODE | BTF_EDITMAIL | BTF_ATTACHREPORT| BTF_SCREENCAPTURE);
35+
BT_SetFlags(BTF_DETAILEDMODE | BTF_EDITMAIL | BTF_ATTACHREPORT | BTF_SCREENCAPTURE);
3636
BT_SetSupportURL(_T("http://www.intellesoft.net"));
3737

3838
// = BugTrapServer ===========================================

0 commit comments

Comments
 (0)