Quiet Coverity.
This commit is contained in:
parent
896188ca5e
commit
fd91529d88
|
@ -373,7 +373,10 @@ protected:
|
||||||
relPath = filePath;
|
relPath = filePath;
|
||||||
|
|
||||||
SetValue( relPath );
|
SetValue( relPath );
|
||||||
m_grid->CommitPendingChanges();
|
|
||||||
|
if( !m_grid->CommitPendingChanges() )
|
||||||
|
; // shouldn't happen, but Coverity doesn't know that
|
||||||
|
|
||||||
*m_currentDir = lastPath;
|
*m_currentDir = lastPath;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -397,7 +400,10 @@ protected:
|
||||||
relPath = filePath;
|
relPath = filePath;
|
||||||
|
|
||||||
SetValue( relPath );
|
SetValue( relPath );
|
||||||
m_grid->CommitPendingChanges();
|
|
||||||
|
if( !m_grid->CommitPendingChanges() )
|
||||||
|
; // shouldn't happen, but Coverity doesn't know that
|
||||||
|
|
||||||
*m_currentDir = relPath;
|
*m_currentDir = relPath;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue