EXE: Fix #385
This commit is contained in:
parent
ad3b84c419
commit
394cae37eb
|
@ -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)
|
||||
|
|
|
@ -42,9 +42,8 @@ void StatusLabel::debugStateChangedSlot(DBGSTATE state)
|
|||
this->setStyleSheet("QLabel { background-color : #c0c0c0; }");
|
||||
GuiUpdateWindowTitle("");
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
this->repaint();
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue