summaryrefslogtreecommitdiff
path: root/chart2/source/inc/CloneHelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-27 11:14:38 +0200
committerNoel Grandin <noel@peralex.com>2016-03-14 13:43:38 +0200
commit8353667d35bc511378c9b14261b6bb11b7bd56aa (patch)
treea065c941301f2b693445958046360b27a651d439 /chart2/source/inc/CloneHelper.hxx
parent6c47de46613b531bd975d073cf31c3fda6f8b8da (diff)
com::sun::star->css in chart2
Change-Id: I04320d32d6d5c54e461cfabef58645f8b772bc69
Diffstat (limited to 'chart2/source/inc/CloneHelper.hxx')
-rw-r--r--chart2/source/inc/CloneHelper.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/inc/CloneHelper.hxx b/chart2/source/inc/CloneHelper.hxx
index 6d1f44f130ed..7f01b041a467 100644
--- a/chart2/source/inc/CloneHelper.hxx
+++ b/chart2/source/inc/CloneHelper.hxx
@@ -38,10 +38,10 @@ template< class Interface >
Interface operator() ( const Interface & xOther )
{
Interface xResult;
- ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >
- xCloneable( xOther, ::com::sun::star::uno::UNO_QUERY );
+ css::uno::Reference< css::util::XCloneable >
+ xCloneable( xOther, css::uno::UNO_QUERY );
if( xCloneable.is())
- xResult.set( xCloneable->createClone(), ::com::sun::star::uno::UNO_QUERY );
+ xResult.set( xCloneable->createClone(), css::uno::UNO_QUERY );
return xResult;
}
@@ -61,8 +61,8 @@ template< class Interface >
/// clones a UNO-sequence of UNO-References
template< class Interface >
void CloneRefSequence(
- const ::com::sun::star::uno::Sequence< Interface > & rSource,
- ::com::sun::star::uno::Sequence< Interface > & rDestination )
+ const css::uno::Sequence< Interface > & rSource,
+ css::uno::Sequence< Interface > & rDestination )
{
rDestination.realloc( rSource.getLength());
::std::transform( rSource.getConstArray(), rSource.getConstArray() + rSource.getLength(),