File tree Expand file tree Collapse file tree
source/Examples/BugTrapTest Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
167167BUGTRAP_FLAGS ;
168168
Original file line number Diff line number Diff 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 ===========================================
You can’t perform that action at this time.
0 commit comments