summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-05 08:15:39 +0200
committerNoel Grandin <noel@peralex.com>2014-06-05 08:17:50 +0200
commit4c563b3a1daf169ed50f6a187121e7e0a1f7c1fc (patch)
tree06a9980d45406c424f388e4ac1be1f658d37488d /ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
parent79df6cf588afbd0fdf09c1eb8c692466606acba5 (diff)
ucb: remove SAL_THROW macro
Change-Id: I023c342b0f086e57c821136498851999fb0152ec
Diffstat (limited to 'ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx')
-rw-r--r--ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx b/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
index b9e561379ffb..8dde5675fa81 100644
--- a/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVSessionFactory.hxx
@@ -59,7 +59,7 @@ class DAVSession;
class DAVSessionFactory : public salhelper::SimpleReferenceObject
{
public:
- virtual ~DAVSessionFactory() SAL_THROW(());
+ virtual ~DAVSessionFactory();
rtl::Reference< DAVSession >
createDAVSession( const OUString & inUri,
@@ -77,7 +77,7 @@ private:
::uno::Reference< ::uno::XComponentContext > m_xContext;
- void releaseElement( DAVSession * pElement ) SAL_THROW(());
+ void releaseElement( DAVSession * pElement );
friend class DAVSession;
};