Fixed typo

This commit is contained in:
Magne Sjaastad
2017-12-21 08:23:18 +01:00
parent 52b377e027
commit 5ecedb7a30
2 changed files with 4 additions and 4 deletions

View File

@@ -2343,7 +2343,7 @@ void RiaApplication::scheduleRecalculateCompletionTypeAndRedrawAllViews()
{
m_recalculateCompletionTypeTimer = new QTimer(this);
m_recalculateCompletionTypeTimer->setSingleShot(true);
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecaulculateCompletionType()));
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecalculateCompletionType()));
}
m_recalculateCompletionTypeTimer->start(500);
@@ -2361,7 +2361,7 @@ void RiaApplication::scheduleRecalculateCompletionTypeAndRedrawEclipseCase(RimEc
{
m_recalculateCompletionTypeTimer = new QTimer(this);
m_recalculateCompletionTypeTimer->setSingleShot(true);
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecaulculateCompletionType()));
connect(m_recalculateCompletionTypeTimer, SIGNAL(timeout()), this, SLOT(slotRecalculateCompletionType()));
}
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());