diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-05 15:11:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-06 08:44:41 +0100 |
commit | 8057748fb2456ad7795c84d347a831ad313456fb (patch) | |
tree | 11cc66751a07d714589c8836c73f7fd4ac84285f /xmloff | |
parent | c57cf1ab4ad90cd359079f8c10fa98ca63650cea (diff) |
#i113056# fix warning
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index 3cdea25344fe..7a23451e6719 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -758,7 +758,7 @@ void SAL_CALL SvXMLExport::setSourceDocument( const uno::Reference< lang::XCompo sal_Int32 nIndex; OUString aURL; - for( nIndex = 0; nIndex < nCount; nIndex++, *pPrefix++ ) + for( nIndex = 0; nIndex < nCount; ++nIndex, ++pPrefix ) { if( xNamespaceMap->getByName( *pPrefix ) >>= aURL ) _GetNamespaceMap().Add( *pPrefix, aURL, XML_NAMESPACE_UNKNOWN ); |