summaryrefslogtreecommitdiff
path: root/sc/inc/listenercalls.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-27 14:20:54 +0200
committerNoel Grandin <noel@peralex.com>2015-10-28 09:22:34 +0200
commit16246ed7b280f51a39a01ded24c0d7bd59d59365 (patch)
treee506c24eeae16b384555f08818e0b62ba41e0285 /sc/inc/listenercalls.hxx
parent5d3c37b99e8bfa9256f12015152439bf4e5ebbb4 (diff)
com::sun::star->css in sc
Change-Id: I7774890f46f9343e944e34db27af8bce3b1d0915
Diffstat (limited to 'sc/inc/listenercalls.hxx')
-rw-r--r--sc/inc/listenercalls.hxx16
1 files changed, 7 insertions, 9 deletions
diff --git a/sc/inc/listenercalls.hxx b/sc/inc/listenercalls.hxx
index d691052ca873..0a335a1a4ae4 100644
--- a/sc/inc/listenercalls.hxx
+++ b/sc/inc/listenercalls.hxx
@@ -35,13 +35,12 @@ namespace com { namespace sun { namespace star {
struct ScUnoListenerEntry
{
- ::com::sun::star::uno::Reference<
- ::com::sun::star::util::XModifyListener > xListener;
- ::com::sun::star::lang::EventObject aEvent;
+ css::uno::Reference<
+ css::util::XModifyListener > xListener;
+ css::lang::EventObject aEvent;
- ScUnoListenerEntry( const ::com::sun::star::uno::Reference<
- ::com::sun::star::util::XModifyListener >& rL,
- const ::com::sun::star::lang::EventObject& rE ) :
+ ScUnoListenerEntry( const css::uno::Reference< css::util::XModifyListener >& rL,
+ const css::lang::EventObject& rE ) :
xListener( rL ),
aEvent( rE )
{}
@@ -59,9 +58,8 @@ public:
ScUnoListenerCalls();
~ScUnoListenerCalls();
- void Add( const ::com::sun::star::uno::Reference<
- ::com::sun::star::util::XModifyListener >& rListener,
- const ::com::sun::star::lang::EventObject& rEvent );
+ void Add( const css::uno::Reference< css::util::XModifyListener >& rListener,
+ const css::lang::EventObject& rEvent );
void ExecuteAndClear();
};