1
0
Fork 0
This commit is contained in:
Nukem 2015-10-17 22:38:49 -04:00
parent ad3b84c419
commit 394cae37eb
3 changed files with 8 additions and 8 deletions

View File

@ -92,7 +92,8 @@ void CrashDumpCreate(EXCEPTION_POINTERS* ExceptionPointers)
LONG CALLBACK CrashDumpVectoredHandler(EXCEPTION_POINTERS* ExceptionInfo)
{
if(ExceptionInfo)
// Any "exception" under 0x1000 is usually just a failed RPC call
if (ExceptionInfo && ExceptionInfo->ExceptionRecord->ExceptionCode > 0x00001000)
{
// Skip DBG_PRINTEXCEPTION_C and DBG_PRINTEXCEPTION_WIDE_C
switch(ExceptionInfo->ExceptionRecord->ExceptionCode)

View File

@ -42,9 +42,8 @@ void StatusLabel::debugStateChangedSlot(DBGSTATE state)
this->setStyleSheet("QLabel { background-color : #c0c0c0; }");
GuiUpdateWindowTitle("");
break;
default:
break;
}
this->repaint();
}

View File

@ -18,11 +18,6 @@ MHTabWidget::MHTabWidget(QWidget* parent, bool allowDetach, bool allowDelete) :
m_Windows.clear();
}
QTabBar* MHTabWidget::tabBar()
{
return m_tabBar;
}
//////////////////////////////////////////////////////////////
// Default Destructor
//////////////////////////////////////////////////////////////
@ -34,6 +29,11 @@ MHTabWidget::~MHTabWidget(void)
delete m_tabBar;
}
QTabBar* MHTabWidget::tabBar()
{
return m_tabBar;
}
int MHTabWidget::count() const
{
return QTabWidget::count() + m_Windows.size();