+ fix various warnings

This commit is contained in:
wmayer
2015-08-29 23:01:19 +02:00
parent 13fa571c41
commit cac09437c8
8 changed files with 10 additions and 12 deletions

View File

@@ -203,9 +203,9 @@ PropertySheet::PropertySheet(Sheet *_owner)
}
PropertySheet::PropertySheet(const PropertySheet &other)
: owner(other.owner)
, dirty(other.dirty)
: dirty(other.dirty)
, mergedCells(other.mergedCells)
, owner(other.owner)
, propertyNameToCellMap(other.propertyNameToCellMap)
, documentObjectToCellMap(other.documentObjectToCellMap)
, signalCounter(0)
@@ -857,7 +857,6 @@ bool PropertySheet::isHidden(CellAddress address) const
void PropertySheet::addDependencies(CellAddress key)
{
Cell * cell = getValue(key);
bool hasUnresolvedDeps = false;
if (!cell)
return;