summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/NeonSession.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/NeonSession.cxx')
-rw-r--r--ucb/source/ucp/webdav-neon/NeonSession.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx
index c4581e1638c9..2c1705c57f14 100644
--- a/ucb/source/ucp/webdav-neon/NeonSession.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx
@@ -832,7 +832,7 @@ void NeonSession::PROPFIND( const OUString & inPath,
SAL_INFO( "ucb.ucp.webdav", "PROPFIND - inPath: <" << inPath << "> inDepth: " << inDepth );
OUString aProps;
for(std::vector< OUString >::const_iterator it = inPropNames.begin();
- it < inPropNames.end(); it++)
+ it < inPropNames.end(); ++it)
{
aProps += *it;
aProps += ", ";
@@ -880,11 +880,11 @@ void NeonSession::PROPFIND( const OUString & inPath,
#if defined SAL_LOG_INFO
{ //debug
for ( std::vector< DAVResourceInfo >::const_iterator itres = ioResInfo.begin();
- itres < ioResInfo.end(); itres++)
+ itres < ioResInfo.end(); ++itres)
{
OUString aProps;
for ( std::vector< OUString >::const_iterator it = (*itres).properties.begin();
- it < (*itres).properties.end(); it++)
+ it < (*itres).properties.end(); ++it)
{
aProps += *it;
aProps += ", ";