+ fix various warnings

This commit is contained in:
wmayer
2015-08-29 23:01:19 +02:00
parent 9c15aa059e
commit 0a06b2b703
8 changed files with 10 additions and 12 deletions

View File

@@ -105,14 +105,14 @@ Cell::Cell(const Cell &other)
, owner(other.owner)
, used(other.used)
, expression(other.expression ? other.expression->copy() : 0)
, style(other.style)
, alignment(other.alignment)
, style(other.style)
, foregroundColor(other.foregroundColor)
, backgroundColor(other.backgroundColor)
, displayUnit(other.displayUnit)
, computedUnit(other.computedUnit)
, colSpan(other.colSpan)
, rowSpan(other.rowSpan)
, colSpan(other.colSpan)
{
}