summaryrefslogtreecommitdiff
path: root/include/comphelper/types.hxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-08-20 21:32:19 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-08-21 09:03:19 +0200
commit32093237b3f41eca976a5018a7c8ef56e3f5fb3a (patch)
tree9c6d97365dda625055d37328a4cd51582db81783 /include/comphelper/types.hxx
parent007099ea3283bedfb0fe9a4c10f7331f8fc8bb73 (diff)
comphelper: starlang -> css::lang
Change-Id: Ie8adb5b81df51fd973cbb786f27ea3ef1462679c
Diffstat (limited to 'include/comphelper/types.hxx')
-rw-r--r--include/comphelper/types.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/comphelper/types.hxx b/include/comphelper/types.hxx
index d606f1b28099..25e9a48ff731 100644
--- a/include/comphelper/types.hxx
+++ b/include/comphelper/types.hxx
@@ -38,7 +38,6 @@ namespace com { namespace sun { namespace star { namespace awt {
namespace comphelper
{
namespace starawt = ::com::sun::star::awt;
- namespace starlang = ::com::sun::star::lang;
typedef css::uno::Reference< css::uno::XInterface > InterfaceRef;
typedef css::uno::Sequence< OUString > StringSequence;
@@ -105,7 +104,7 @@ namespace comphelper
template <class TYPE>
void disposeComponent(css::uno::Reference<TYPE>& _rxComp)
{
- css::uno::Reference<starlang::XComponent> xComp(_rxComp, css::uno::UNO_QUERY);
+ css::uno::Reference<css::lang::XComponent> xComp(_rxComp, css::uno::UNO_QUERY);
if (xComp.is())
{
xComp->dispose();
@@ -117,7 +116,7 @@ namespace comphelper
bool getImplementation(TYPE*& _pObject, const css::uno::Reference< css::uno::XInterface >& _rxIFace)
{
_pObject = NULL;
- css::uno::Reference< starlang::XUnoTunnel > xTunnel(_rxIFace, css::uno::UNO_QUERY);
+ css::uno::Reference< css::lang::XUnoTunnel > xTunnel(_rxIFace, css::uno::UNO_QUERY);
if (xTunnel.is())
_pObject = reinterpret_cast< TYPE* >(xTunnel->getSomething(TYPE::getUnoTunnelImplementationId()));
@@ -152,7 +151,7 @@ namespace comphelper
COMPHELPER_DLLPUBLIC OUString getString(const css::uno::Any& _rAny);
COMPHELPER_DLLPUBLIC bool getBOOL(const css::uno::Any& _rAny);
- COMPHELPER_DLLPUBLIC sal_Int32 getEnumAsINT32(const css::uno::Any& _rAny) throw(starlang::IllegalArgumentException);
+ COMPHELPER_DLLPUBLIC sal_Int32 getEnumAsINT32(const css::uno::Any& _rAny) throw(css::lang::IllegalArgumentException);
//= replacement of some former UsrAny.setXXX methods - can be used with rvalues
inline void setBOOL(css::uno::Any& _rAny, bool _b)