forked from qt-creator/qt-creator
debugger: fix thinko in time out computation
This commit is contained in:
@@ -194,8 +194,8 @@ GdbEngine::GdbEngine(DebuggerManager *manager) :
|
|||||||
|
|
||||||
m_commandTimer = new QTimer(this);
|
m_commandTimer = new QTimer(this);
|
||||||
m_commandTimer->setSingleShot(true);
|
m_commandTimer->setSingleShot(true);
|
||||||
m_commandTimer->setInterval(
|
QVariant timeOut = theDebuggerAction(GdbWatchdogTimeout)->value();
|
||||||
1000 * qMin(20, theDebuggerAction(GdbWatchdogTimeout)->value().toInt()));
|
m_commandTimer->setInterval(1000 * qMax(20, timeOut.toInt()));
|
||||||
connect(m_commandTimer, SIGNAL(timeout()), SLOT(commandTimeout()));
|
connect(m_commandTimer, SIGNAL(timeout()), SLOT(commandTimeout()));
|
||||||
|
|
||||||
// Needs no resetting in initializeVariables()
|
// Needs no resetting in initializeVariables()
|
||||||
|
@@ -97,9 +97,6 @@ on slow machines. In this case the value should be increased.</string>
|
|||||||
<property name="layoutDirection">
|
<property name="layoutDirection">
|
||||||
<enum>Qt::LeftToRight</enum>
|
<enum>Qt::LeftToRight</enum>
|
||||||
</property>
|
</property>
|
||||||
<property name="specialValueText">
|
|
||||||
<string><unlimited></string>
|
|
||||||
</property>
|
|
||||||
<property name="minimum">
|
<property name="minimum">
|
||||||
<number>20</number>
|
<number>20</number>
|
||||||
</property>
|
</property>
|
||||||
|
Reference in New Issue
Block a user