Kaydet (Commit) 52abaef5 authored tarafından Thorsten Behrens's avatar Thorsten Behrens

Fix a warning.

Change-Id: I522d4d950c3eed61a6e247557e48fbbf952e435e
üst ddb7afe6
......@@ -1410,7 +1410,7 @@ static void CalcAutoLayoutRectangles( SdPage& rPage, int nLayout, Rectangle* rRe
sal_Bool bRightToLeft = ( rPage.GetModel() && static_cast< SdDrawDocument* >( rPage.GetModel() )->GetDefaultWritingMode() == ::com::sun::star::text::WritingMode_RL_TB );
parseXml(); //calling this for temporary reference,have to use it somewhere else.
for(int y=0; y < layoutinfo.size(); y++) //loop through vector of Xnodes
for(size_t y=0; y < layoutinfo.size(); y++) //loop through vector of Xnodes
{
Reference<XNode> layoutnode = layoutinfo[y]; //get i'th layout element
Reference<XNamedNodeMap> layoutattrlist =layoutnode->getAttributes();
......
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