summaryrefslogtreecommitdiffstats
path: root/ucb
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-06-03 23:03:43 +0200
committerJulien Nabet <serval2412@yahoo.fr>2013-06-03 23:03:43 +0200
commitd7904330fd38af65b4448045909f42a3c0a994bb (patch)
tree46045abd0278fe2b086267d39bfb77b2744eb07d /ucb
parentFix variable value reassigned before old value used (diff)
downloadcore-d7904330fd38af65b4448045909f42a3c0a994bb.tar.gz
core-d7904330fd38af65b4448045909f42a3c0a994bb.zip
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I1310ac912aa2031b15851339fd84d435308350a9
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavcontent.cxx6
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" ) ) )
{