summaryrefslogtreecommitdiff
path: root/include/uno
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 10:32:47 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 12:05:04 +0200
commit1c909a13a0816e20d365000cc527d93e02633b0c (patch)
tree7a402659f9696c01ceeca51c5ddd2127b3b0e815 /include/uno
parentd29e614ff9cd91c4e4a1bada6a21884e33323f8d (diff)
com::sun::star->css in include/ucbhelper to include/xmlscript
Change-Id: Iaa7f0b8455a601d3992c08cde0943c709c417256
Diffstat (limited to 'include/uno')
-rw-r--r--include/uno/mapping.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/uno/mapping.hxx b/include/uno/mapping.hxx
index d62fba0a40b1..6c950930d3df 100644
--- a/include/uno/mapping.hxx
+++ b/include/uno/mapping.hxx
@@ -165,7 +165,7 @@ public:
@return mapped interface
*/
inline void * SAL_CALL mapInterface(
- void * pInterface, const ::com::sun::star::uno::Type & rType ) const;
+ void * pInterface, const css::uno::Type & rType ) const;
/** Maps an interface from one environment to another.
@@ -190,7 +190,7 @@ public:
@param pInterface source interface
@param rType type of interface to be mapped
*/
- inline void SAL_CALL mapInterface( void ** ppOut, void * pInterface, const ::com::sun::star::uno::Type & rType ) const;
+ inline void SAL_CALL mapInterface( void ** ppOut, void * pInterface, const css::uno::Type & rType ) const;
};
inline Mapping::Mapping(
@@ -254,7 +254,7 @@ inline Mapping & Mapping::operator = ( uno_Mapping * pMapping )
}
inline void Mapping::mapInterface(
- void ** ppOut, void * pInterface, const ::com::sun::star::uno::Type & rType ) const
+ void ** ppOut, void * pInterface, const css::uno::Type & rType ) const
{
typelib_TypeDescription * pTD = 0;
TYPELIB_DANGER_GET( &pTD, rType.getTypeLibType() );
@@ -274,7 +274,7 @@ inline void * Mapping::mapInterface(
}
inline void * Mapping::mapInterface(
- void * pInterface, const ::com::sun::star::uno::Type & rType ) const
+ void * pInterface, const css::uno::Type & rType ) const
{
void * pOut = 0;
mapInterface( &pOut, pInterface, rType );