summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/file/FConnection.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-06-05 13:22:23 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-06-05 13:22:23 +0000
commit3d121869304fb5be7a2a101911a1f11ef700ebee (patch)
tree1238a8c8a5ca20fb767aa83e27eb866e13370a94 /connectivity/source/drivers/file/FConnection.cxx
parent4cb455f2d9b2904f4b27a16982ed406e79b3e268 (diff)
INTEGRATION: CWS bgdlremove (1.47.60); FILE MERGED
2007/05/18 09:01:37 kso 1.47.60.1: #i77419# - cleanup of ucbhelper namespaces. Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'connectivity/source/drivers/file/FConnection.cxx')
-rw-r--r--connectivity/source/drivers/file/FConnection.cxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx
index a4d076f86f53..54041b6989bf 100644
--- a/connectivity/source/drivers/file/FConnection.cxx
+++ b/connectivity/source/drivers/file/FConnection.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: FConnection.cxx,v $
*
- * $Revision: 1.47 $
+ * $Revision: 1.48 $
*
- * last change: $Author: kz $ $Date: 2006-12-13 16:17:03 $
+ * last change: $Author: ihi $ $Date: 2007-06-05 14:22:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -107,7 +107,7 @@ using namespace com::sun::star::sdbc;
using namespace com::sun::star::sdbcx;
using namespace com::sun::star::container;
using namespace com::sun::star::ucb;
-using namespace ::ucb;
+using namespace ::ucbhelper;
using rtl::OUString;
typedef connectivity::OMetaConnection OConnection_BASE;
// --------------------------------------------------------------------------------
@@ -210,10 +210,10 @@ void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyV
try
{
- ::ucb::Content aFile;
+ ::ucbhelper::Content aFile;
try
{
- aFile = ::ucb::Content(getURL(),Reference< ::com::sun::star::ucb::XCommandEnvironment >());
+ aFile = ::ucbhelper::Content(getURL(),Reference< XCommandEnvironment >());
}
catch(ContentCreationException& e)
{
@@ -229,7 +229,7 @@ void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyV
{
if (aFile.isFolder())
{
- m_xDir = aFile.createDynamicCursor(aProps, ::ucb::INCLUDE_DOCUMENTS_ONLY );
+ m_xDir = aFile.createDynamicCursor(aProps, ::ucbhelper::INCLUDE_DOCUMENTS_ONLY );
m_xContent = aFile.get();
}
else if (aFile.isDocument())
@@ -238,12 +238,12 @@ void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyV
Reference<XContentIdentifier> xIdent = xParent->getIdentifier();
m_xContent = xParent;
- ::ucb::Content aParent(xIdent->getContentIdentifier(),Reference< XCommandEnvironment >());
- m_xDir = aParent.createDynamicCursor(aProps, ::ucb::INCLUDE_DOCUMENTS_ONLY );
+ ::ucbhelper::Content aParent(xIdent->getContentIdentifier(),Reference< XCommandEnvironment >());
+ m_xDir = aParent.createDynamicCursor(aProps, ::ucbhelper::INCLUDE_DOCUMENTS_ONLY );
}
else
{
- OSL_ENSURE(0,"OConnection::construct: ::ucb::Content isn't a folde nor a document! How that?!");
+ OSL_ENSURE(0,"OConnection::construct: ::ucbhelper::Content isn't a folde nor a document! How that?!");
throw SQLException();
}
}
@@ -390,12 +390,12 @@ sal_Int32 SAL_CALL OConnection::getTransactionIsolation( ) throw(SQLException,
return 0;
}
// --------------------------------------------------------------------------------
-Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OConnection::getTypeMap( ) throw(SQLException, RuntimeException)
+Reference< XNameAccess > SAL_CALL OConnection::getTypeMap( ) throw(SQLException, RuntimeException)
{
return NULL;
}
// --------------------------------------------------------------------------------
-void SAL_CALL OConnection::setTypeMap( const Reference< ::com::sun::star::container::XNameAccess >& /*typeMap*/ ) throw(SQLException, RuntimeException)
+void SAL_CALL OConnection::setTypeMap( const Reference< XNameAccess >& /*typeMap*/ ) throw(SQLException, RuntimeException)
{
}
// --------------------------------------------------------------------------------
@@ -435,17 +435,17 @@ void OConnection::disposing()
m_aStatements.clear();
m_bClosed = sal_True;
- m_xMetaData = ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XDatabaseMetaData>();
+ m_xMetaData = WeakReference< XDatabaseMetaData>();
m_xDir = NULL;
m_xContent = NULL;
// ::comphelper::disposeComponent(m_xCatalog);
- m_xCatalog = ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbcx::XTablesSupplier>();
+ m_xCatalog = WeakReference< XTablesSupplier>();
dispose_ChildImpl();
OConnection_BASE::disposing();
}
//------------------------------------------------------------------------------
-::com::sun::star::uno::Reference< XTablesSupplier > OConnection::createCatalog()
+Reference< XTablesSupplier > OConnection::createCatalog()
{
::osl::MutexGuard aGuard( m_aMutex );
Reference< XTablesSupplier > xTab = m_xCatalog;
@@ -457,7 +457,7 @@ void OConnection::disposing()
return xTab;
}
// -----------------------------------------------------------------------------
-::com::sun::star::uno::Reference< ::com::sun::star::ucb::XDynamicResultSet > OConnection::getDir() const
+Reference< XDynamicResultSet > OConnection::getDir() const
{
Reference<XDynamicResultSet> xContent;
Sequence< ::rtl::OUString > aProps(1);
@@ -466,8 +466,8 @@ void OConnection::disposing()
try
{
Reference<XContentIdentifier> xIdent = getContent()->getIdentifier();
- ::ucb::Content aParent(xIdent->getContentIdentifier(),Reference< XCommandEnvironment >());
- xContent = aParent.createDynamicCursor(aProps, ::ucb::INCLUDE_DOCUMENTS_ONLY );
+ ::ucbhelper::Content aParent(xIdent->getContentIdentifier(),Reference< XCommandEnvironment >());
+ xContent = aParent.createDynamicCursor(aProps, ::ucbhelper::INCLUDE_DOCUMENTS_ONLY );
}
catch(Exception&)
{
@@ -475,7 +475,7 @@ void OConnection::disposing()
return xContent;
}
// -----------------------------------------------------------------------------
-sal_Int64 SAL_CALL OConnection::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw (::com::sun::star::uno::RuntimeException)
+sal_Int64 SAL_CALL OConnection::getSomething( const Sequence< sal_Int8 >& rId ) throw (RuntimeException)
{
return (rId.getLength() == 16 && 0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
? reinterpret_cast< sal_Int64 >( this )