summaryrefslogtreecommitdiff
path: root/ucb/workben
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-06-05 17:22:55 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-06-05 17:22:55 +0000
commit3d6392243fe69318e2eb76182413c1fc41854ccf (patch)
treebe8a032d5ac025ae562052bf7b76ae392712caf3 /ucb/workben
parent95e7c2a2c18be382ca4beb1d77664c78cbc28c7e (diff)
INTEGRATION: CWS bgdlremove (1.3.40); FILE MERGED
2007/05/18 14:13:13 kso 1.3.40.2: #77419# - cleanup of ucbhelper namespaces. 2007/05/18 14:06:51 kso 1.3.40.1: #i77419# - cleanup of ucbhelper namespaces.
Diffstat (limited to 'ucb/workben')
-rw-r--r--ucb/workben/cachemap/cachemapobjectcontainer2.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/ucb/workben/cachemap/cachemapobjectcontainer2.cxx b/ucb/workben/cachemap/cachemapobjectcontainer2.cxx
index 57e32fe10072..e376cfc96b46 100644
--- a/ucb/workben/cachemap/cachemapobjectcontainer2.cxx
+++ b/ucb/workben/cachemap/cachemapobjectcontainer2.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cachemapobjectcontainer2.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 14:09:36 $
+ * last change: $Author: ihi $ $Date: 2007-06-05 18:22:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -63,9 +63,9 @@
#include "rtl/ustring.hxx"
#endif
-using namespace com::sun;
using ucb::cachemap::Object2;
using ucb::cachemap::ObjectContainer2;
+using namespace com::sun::star;
ObjectContainer2::ObjectContainer2()
{}
@@ -81,14 +81,14 @@ rtl::Reference< Object2 > ObjectContainer2::get(rtl::OUString const & rKey)
Map::iterator aIt(m_aMap.find(rKey));
if (aIt != m_aMap.end())
xElement = static_cast< Object2 * >(
- star::uno::Reference< star::uno::XWeak >(
- aIt->second.get(), star::uno::UNO_QUERY).
+ uno::Reference< uno::XWeak >(
+ aIt->second.get(), uno::UNO_QUERY).
get());
if (!xElement.is())
{
xElement = new Object2;
m_aMap[rKey]
- = star::uno::WeakReference< Object2 >(xElement.get());
+ = uno::WeakReference< Object2 >(xElement.get());
}
}
return xElement;