+ Fixed merge of cells to retain value in upper left cell+ Replaced std::map::at() with iterators and find. Removed some superfluous calls to std::map::find()

+ Visual Studio fixes
+ Fixed return values
+ Removed unused variables
This commit is contained in:
Eivind Kvedalen
2015-02-13 21:46:23 +01:00
committed by wmayer
parent 935ec5b034
commit 1f347b53cf
10 changed files with 110 additions and 74 deletions

View File

@@ -235,7 +235,7 @@ void Cell::setContent(const char * value)
if (expr)
delete expr->eval();
}
catch (Base::Exception & e) {
catch (Base::Exception &) {
expr = new StringExpression(owner->sheet(), value);
}
}