mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
Fixed typo
This commit is contained in:
@@ -2343,7 +2343,7 @@ void RiaApplication::scheduleRecalculateCompletionTypeAndRedrawAllViews()
|
|||||||
{
|
{
|
||||||
m_recalculateCompletionTypeTimer = new QTimer(this);
|
m_recalculateCompletionTypeTimer = new QTimer(this);
|
||||||
m_recalculateCompletionTypeTimer->setSingleShot(true);
|
m_recalculateCompletionTypeTimer->setSingleShot(true);
|
||||||
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecaulculateCompletionType()));
|
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecalculateCompletionType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
m_recalculateCompletionTypeTimer->start(500);
|
m_recalculateCompletionTypeTimer->start(500);
|
||||||
@@ -2361,7 +2361,7 @@ void RiaApplication::scheduleRecalculateCompletionTypeAndRedrawEclipseCase(RimEc
|
|||||||
{
|
{
|
||||||
m_recalculateCompletionTypeTimer = new QTimer(this);
|
m_recalculateCompletionTypeTimer = new QTimer(this);
|
||||||
m_recalculateCompletionTypeTimer->setSingleShot(true);
|
m_recalculateCompletionTypeTimer->setSingleShot(true);
|
||||||
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecaulculateCompletionType()));
|
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecalculateCompletionType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
m_recalculateCompletionTypeTimer->start(500);
|
m_recalculateCompletionTypeTimer->start(500);
|
||||||
@@ -2410,7 +2410,7 @@ void RiaApplication::slotUpdateScheduledDisplayModels()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RiaApplication::slotRecaulculateCompletionType()
|
void RiaApplication::slotRecalculateCompletionType()
|
||||||
{
|
{
|
||||||
std::set<RimEclipseCase*> uniqueCases(m_eclipseCasesToRecalculate.begin(), m_eclipseCasesToRecalculate.end());
|
std::set<RimEclipseCase*> uniqueCases(m_eclipseCasesToRecalculate.begin(), m_eclipseCasesToRecalculate.end());
|
||||||
|
|
||||||
|
|||||||
@@ -229,7 +229,7 @@ private:
|
|||||||
private slots:
|
private slots:
|
||||||
void slotWorkerProcessFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
void slotWorkerProcessFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
||||||
void slotUpdateScheduledDisplayModels();
|
void slotUpdateScheduledDisplayModels();
|
||||||
void slotRecaulculateCompletionType();
|
void slotRecalculateCompletionType();
|
||||||
|
|
||||||
// Friend classes required to have access to slotUpdateScheduledDisplayModels
|
// Friend classes required to have access to slotUpdateScheduledDisplayModels
|
||||||
// As snapshots are produced fast in sequence, the feature must have access to force redraw
|
// As snapshots are produced fast in sequence, the feature must have access to force redraw
|
||||||
|
|||||||
Reference in New Issue
Block a user