summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-05-10 12:07:00 +0000
committerKurt Zenker <kz@openoffice.org>2007-05-10 12:07:00 +0000
commit904704ac646eb54b0bfe0af8809ce09d73556f38 (patch)
tree29cf251211debd2a35a2516653e3111ae6058df5
parentf1005a882e297e0a78d08cbb62976988e27d8c24 (diff)
INTEGRATION: CWS ucbfixes01 (1.15.24); FILE MERGED
2007/04/18 15:34:05 kso 1.15.24.1: #134089# - Never allow URLs with empty hostnames.
-rw-r--r--ucb/source/ucp/webdav/DAVResourceAccess.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/DAVResourceAccess.hxx b/ucb/source/ucp/webdav/DAVResourceAccess.hxx
index 1c4649afe601..f50385371064 100644
--- a/ucb/source/ucp/webdav/DAVResourceAccess.hxx
+++ b/ucb/source/ucp/webdav/DAVResourceAccess.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DAVResourceAccess.hxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: kz $ $Date: 2006-12-13 15:04:16 $
+ * last change: $Author: kz $ $Date: 2007-05-10 13:07:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -259,7 +259,8 @@ public:
private:
const rtl::OUString & getRequestURI() const;
sal_Bool detectRedirectCycle( const rtl::OUString& rRedirectURL );
- sal_Bool handleException( DAVException & e );
+ sal_Bool handleException( DAVException & e )
+ throw ( DAVException );
void initialize()
throw ( DAVException );
};