Kaydet (Commit) 012a759a authored tarafından Miklos Vajna's avatar Miklos Vajna

more ambiguity fixes

Change-Id: I8c3af0976414ae444ec08b7e60485d8886f68a76
üst 96019b49
......@@ -85,26 +85,26 @@ bool DomainMapperTableManager::attribute(Id nName, Value& rValue)
TablePropertyMapPtr pPropMap(new TablePropertyMap());
pPropMap->Insert(PROP_TBL_LOOK, uno::makeAny<sal_Int32>(rValue.getInt()));
insertTableProps(pPropMap);
m_aTableLook["val"] = uno::makeAny(rValue.getInt());
m_aTableLook["val"] = uno::makeAny<sal_Int32>(rValue.getInt());
}
break;
case NS_ooxml::LN_CT_TblLook_noVBand:
m_aTableLook["noVBand"] = uno::makeAny(rValue.getInt());
m_aTableLook["noVBand"] = uno::makeAny<sal_Int32>(rValue.getInt());
break;
case NS_ooxml::LN_CT_TblLook_noHBand:
m_aTableLook["noHBand"] = uno::makeAny(rValue.getInt());
m_aTableLook["noHBand"] = uno::makeAny<sal_Int32>(rValue.getInt());
break;
case NS_ooxml::LN_CT_TblLook_lastColumn:
m_aTableLook["lastColumn"] = uno::makeAny(rValue.getInt());
m_aTableLook["lastColumn"] = uno::makeAny<sal_Int32>(rValue.getInt());
break;
case NS_ooxml::LN_CT_TblLook_lastRow:
m_aTableLook["lastRow"] = uno::makeAny(rValue.getInt());
m_aTableLook["lastRow"] = uno::makeAny<sal_Int32>(rValue.getInt());
break;
case NS_ooxml::LN_CT_TblLook_firstColumn:
m_aTableLook["firstColumn"] = uno::makeAny(rValue.getInt());
m_aTableLook["firstColumn"] = uno::makeAny<sal_Int32>(rValue.getInt());
break;
case NS_ooxml::LN_CT_TblLook_firstRow:
m_aTableLook["firstRow"] = uno::makeAny(rValue.getInt());
m_aTableLook["firstRow"] = uno::makeAny<sal_Int32>(rValue.getInt());
break;
default:
bRet = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment