Kaydet (Commit) 6e6ae980 authored tarafından Andrzej Hunt's avatar Andrzej Hunt

More range based for

Change-Id: I9cdcd8dca413981389cd4db3059a420131e5f839
üst d5545979
......@@ -1294,7 +1294,7 @@ static char* getStyles(LibreOfficeKitDocument* pThis, const char* pCommand)
}
uno::Sequence<OUString> aStyles = xStyleFamily->getElementNames();
for (sal_Int32 nInd = 0; nInd < aStyles.getLength(); ++nInd)
for ( OUString aStyle: aStyles )
{
boost::property_tree::ptree aChild;
aChild.put("", aStyles[nInd]);
......
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