Kaydet (Commit) e99d632b authored tarafından Stephan Bergmann's avatar Stephan Bergmann

More loplugin:cstylecast: lotuswordpro

Change-Id: I4ded44ed833b741a55ff69c712d040c8ccc71cc5
üst e5fc690f
......@@ -625,7 +625,7 @@ void LwpCellLayout::Read()
type = pStrm->QuickReaduInt16();
pStrm->SkipExtra();
cType = (LeaderDotType)type;
cType = static_cast<LeaderDotType>(type);
cLayNumerics.ReadIndexed(pStrm);
cLayDiagonalLine.ReadIndexed(pStrm);
......
......@@ -115,12 +115,12 @@ inline sal_uInt32 LwpTab::GetPosition()
inline LwpTab::TabType LwpTab::GetTabType()
{
return (LwpTab::TabType)m_nType;
return static_cast<LwpTab::TabType>(m_nType);
}
inline LwpTab::LeaderType LwpTab::GetLeaderType()
{
return (LwpTab::LeaderType)m_nLeader;
return static_cast<LwpTab::LeaderType>(m_nLeader);
}
inline sal_uInt16 LwpTab::GetAlignChar()
......
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