diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-06-03 23:03:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-06-03 23:03:43 +0200 |
commit | d7904330fd38af65b4448045909f42a3c0a994bb (patch) | |
tree | 46045abd0278fe2b086267d39bfb77b2744eb07d /ucb | |
parent | 417021ead14bf960a6f0a897cc4c1533f479210d (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I1310ac912aa2031b15851339fd84d435308350a9
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontent.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx index 8bc4d690ef73..3f5691f7987c 100644 --- a/ucb/source/ucp/webdav/webdavcontent.cxx +++ b/ucb/source/ucp/webdav/webdavcontent.cxx @@ -94,7 +94,7 @@ static void lcl_sendPartialGETRequest( bool &bError, rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "bytes=0-0" )))); for ( std::vector< rtl::OUString >::const_iterator it = aHeaderNames.begin(); - it != aHeaderNames.end(); it++ ) + it != aHeaderNames.end(); ++it ) { if ( it->equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Content-Length" ) ) ) { @@ -126,7 +126,7 @@ static void lcl_sendPartialGETRequest( bool &bError, rtl::OUString aAcceptRanges, aContentRange, aContentLength; std::vector< DAVPropertyValue > &aResponseProps = aResource.properties; for ( std::vector< DAVPropertyValue >::const_iterator it = aResponseProps.begin(); - it != aResponseProps.end(); it++ ) + it != aResponseProps.end(); ++it ) { if ( it->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Accept-Ranges" ) ) ) it->Value >>= aAcceptRanges; @@ -160,7 +160,7 @@ static void lcl_sendPartialGETRequest( bool &bError, if ( !aSize.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "*" ))) { for ( std::vector< DAVPropertyValue >::iterator it = aResponseProps.begin(); - it != aResponseProps.end(); it++ ) + it != aResponseProps.end(); ++it ) { if ( it->Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Content-Length" ) ) ) { |