summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpcontentprovider.cxx
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2002-07-31 14:13:44 +0000
committerAndreas Bille <abi@openoffice.org>2002-07-31 14:13:44 +0000
commit398ba30e1dae68404e47715f29bec2cd5f115213 (patch)
treeeaac38baa2305b3b1ef15f856a5efe680d6cde76 /ucb/source/ucp/ftp/ftpcontentprovider.cxx
parentb7de4d0960e007dd578760c39f5bfbb9806851ef (diff)
Saving the code
Diffstat (limited to 'ucb/source/ucp/ftp/ftpcontentprovider.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpcontentprovider.cxx18
1 files changed, 12 insertions, 6 deletions
diff --git a/ucb/source/ucp/ftp/ftpcontentprovider.cxx b/ucb/source/ucp/ftp/ftpcontentprovider.cxx
index e538c280a0c4..78d780600f69 100644
--- a/ucb/source/ucp/ftp/ftpcontentprovider.cxx
+++ b/ucb/source/ucp/ftp/ftpcontentprovider.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ftpcontentprovider.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: abi $ $Date: 2002-06-20 14:49:21 $
+ * last change: $Author: abi $ $Date: 2002-07-31 15:13:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -152,9 +152,14 @@ ONE_INSTANCE_SERVICE_FACTORY_IMPL(FtpContentProvider);
//=========================================================================
// virtual
-Reference<XContent> SAL_CALL FtpContentProvider::queryContent(const Reference< XContentIdentifier >& xCanonicId)
- throw( IllegalIdentifierException,
- RuntimeException )
+Reference<XContent> SAL_CALL
+FtpContentProvider::queryContent(
+ const Reference< XContentIdentifier >& xCanonicId
+)
+ throw(
+ IllegalIdentifierException,
+ RuntimeException
+ )
{
// Check, if a content with given id already exists...
Reference<XContent> xContent
@@ -174,7 +179,8 @@ Reference<XContent> SAL_CALL FtpContentProvider::queryContent(const Reference< X
}
}
- xContent = new FtpContent(m_xSMgr,this,xCanonicId); // may throw IllegalIdentifierException
+ xContent = new FtpContent(m_xSMgr,this,xCanonicId);
+ // may throw IllegalIdentifierException
return xContent;
}