diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-24 20:42:33 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-24 21:03:26 +0300 |
commit | a3706c2470a9b87b3abdcbe94f9629e2220e17f8 (patch) | |
tree | 593e96e06a858edb116ac9ddf16cca37df5d8367 /ucb | |
parent | f403784c1352cdc66a9cfdc569b6c62d8a3b19e1 (diff) |
Looser throw specifier for virtual webdav_ucp::DAVException::~DAVException()
Change-Id: I85892e6a9e7cc7c3720314fe0e7a0c96cbf989bc
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/DAVException.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ucb/source/ucp/webdav-neon/DAVException.hxx b/ucb/source/ucp/webdav-neon/DAVException.hxx index 54287eb6c1cd..499ccbbf3283 100644 --- a/ucb/source/ucp/webdav-neon/DAVException.hxx +++ b/ucb/source/ucp/webdav-neon/DAVException.hxx @@ -156,6 +156,7 @@ class DAVException : std::exception sal_uInt16 nStatusCode ) : mExceptionCode( inExceptionCode ), mData( rData ), mStatusCode( nStatusCode ) {}; + virtual ~DAVException() throw() {}; const ExceptionCode & getError() const { return mExceptionCode; } const OUString & getData() const { return mData; } |