summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpurl.cxx
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2002-10-23 07:00:11 +0000
committerAndreas Bille <abi@openoffice.org>2002-10-23 07:00:11 +0000
commitb2b7ddcd7763c5b5c70d7083bd9a0e593a93797d (patch)
tree0e8aa24028335243672800a5e68e1d8e4cb2f195 /ucb/source/ucp/ftp/ftpurl.cxx
parent1d5481b5a204c3be7bf1057a2cbe4a9cf67c512e (diff)
#104240# fpxcontentprovider replaced
Diffstat (limited to 'ucb/source/ucp/ftp/ftpurl.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpurl.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/ucb/source/ucp/ftp/ftpurl.cxx b/ucb/source/ucp/ftp/ftpurl.cxx
index 3aa97b1fe317..406ab768daa8 100644
--- a/ucb/source/ucp/ftp/ftpurl.cxx
+++ b/ucb/source/ucp/ftp/ftpurl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ftpurl.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: abi $ $Date: 2002-10-21 13:13:00 $
+ * last change: $Author: abi $ $Date: 2002-10-23 08:00:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -156,6 +156,17 @@ extern "C" {
}
+FTPURL::FTPURL(const FTPURL& r)
+ : m_pFCP(r.m_pFCP),
+ m_aUsername(r.m_aUsername),
+ m_bShowPassword(r.m_bShowPassword),
+ m_aHost(r.m_aHost),
+ m_aPort(r.m_aPort),
+ m_aPathSegmentVec(r.m_aPathSegmentVec),
+ m_mutex()
+{
+}
+
FTPURL::FTPURL(const rtl::OUString& url,
FTPHandleProvider* pFCP)