summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/StyleSheetTable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/dmapper/StyleSheetTable.cxx')
-rw-r--r--writerfilter/source/dmapper/StyleSheetTable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/StyleSheetTable.cxx b/writerfilter/source/dmapper/StyleSheetTable.cxx
index 639a4501609d..96280ea8964d 100644
--- a/writerfilter/source/dmapper/StyleSheetTable.cxx
+++ b/writerfilter/source/dmapper/StyleSheetTable.cxx
@@ -179,7 +179,7 @@ beans::PropertyValue StyleSheetEntry::GetInteropGrabBag()
beans::PropertyValue aRet;
aRet.Name = sStyleIdentifierI;
- beans::PropertyValues aSeq = GetInteropGrabBagSeq();;
+ beans::PropertyValues aSeq = GetInteropGrabBagSeq();
aRet.Value = uno::makeAny(aSeq);
return aRet;
}
@@ -1440,7 +1440,7 @@ OUString StyleSheetTable::ConvertStyleName( const OUString& rWWName, bool bExten
{
//search for the rWWName in the IdentifierD of the existing styles and convert the sStyleName member
std::vector< StyleSheetEntryPtr >::iterator aIt = m_pImpl->m_aStyleSheetEntries.begin();
- //TODO: performance issue - put styles list into a map sorted by it's sStyleIdentifierD members
+ //TODO: performance issue - put styles list into a map sorted by its sStyleIdentifierD members
while( aIt != m_pImpl->m_aStyleSheetEntries.end() )
{
if( rWWName == ( *aIt )->sStyleIdentifierD )