summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorGiuseppe Castagno <giuseppe.castagno@acca-esse.eu>2016-09-25 15:57:31 +0200
committerGiuseppe Castagno <giuseppe.castagno@acca-esse.eu>2016-09-26 06:41:37 +0000
commitc506954ce9a466fbc5204b3b5e2190ed907dfffe (patch)
tree2cf8f9bd4f6b06123deb37ab27045f04bcb1542b /ucb
parent833156c6a6aa3603adf69384e63f01dbe8cb1f80 (diff)
tdf#101094 (33): Fix: use the correct exception
Change-Id: I41e7cc0a1e176e44cb1b3fb87269eb6e052c6478 Reviewed-on: https://gerrit.libreoffice.org/29273 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index c141e269a78b..e6153ffd6853 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -1642,9 +1642,9 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
if ( bError )
{
- if ( !shouldAccessNetworkAfterException( e ) )
+ if ( !shouldAccessNetworkAfterException( aLastException ) )
{
- cancelCommandExecution( e, xEnv );
+ cancelCommandExecution( aLastException, xEnv );
// unreachable
}
}