diff --git a/source/Client/BugTrap.h b/source/Client/BugTrap.h index d7dcebd..5378a55 100644 --- a/source/Client/BugTrap.h +++ b/source/Client/BugTrap.h @@ -105,12 +105,6 @@ typedef enum BUGTRAP_FLAGS_tag * provider. */ BTF_ATTACHREPORT = 0x004, - /** - * @brief By default BugTrap show a "More..." button to open - * the advanced ui in the simple dialog. Enable this flag - * hide the button. - */ - BTF_HIDEMOREBUTTON = 0x006, /** * @brief Set this flag to add list of all processes and loaded * modules to the report. Disable this option to speedup report @@ -160,7 +154,13 @@ typedef enum BUGTRAP_FLAGS_tag * @brief Automatically restart the application after the crash has been * handled. */ - BTF_RESTARTAPP = 0x200 + BTF_RESTARTAPP = 0x200, + /** + * @brief By default BugTrap show a "More..." button to open + * the advanced ui in the simple dialog. Enable this flag + * hide the button. + */ + BTF_HIDEMOREBUTTON = 0x400, } BUGTRAP_FLAGS; diff --git a/source/Examples/BugTrapTest/BugTrapTest.cpp b/source/Examples/BugTrapTest/BugTrapTest.cpp index d987285..8916bce 100644 --- a/source/Examples/BugTrapTest/BugTrapTest.cpp +++ b/source/Examples/BugTrapTest/BugTrapTest.cpp @@ -32,7 +32,7 @@ CBugTrapTestApp::CBugTrapTestApp() // Setup exception handler BT_SetAppName(_T("BugTrap Test")); BT_SetSupportEMail(_T("your@email.com")); - BT_SetFlags(BTF_DETAILEDMODE | BTF_EDITMAIL | BTF_ATTACHREPORT| BTF_SCREENCAPTURE); + BT_SetFlags(BTF_DETAILEDMODE | BTF_EDITMAIL | BTF_ATTACHREPORT | BTF_SCREENCAPTURE); BT_SetSupportURL(_T("http://www.intellesoft.net")); // = BugTrapServer ===========================================