From 752cd07d085ac0aadc99bd512d49072843139032 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 19 Jan 2016 19:45:45 +0200 Subject: InterfaceContainer2 with vector instead of Sequence create an InterfaceContainer2 class to replace InterfaceContainer. It uses a std::vector instead of a Sequence for the mutable listener list, which provides far better performance. Switch all our internal use-sites to the new class. Change-Id: I6b56cfa511ded2395faa22e68fab3b2f16c3cb88 --- slideshow/test/demoshow.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'slideshow/test') diff --git a/slideshow/test/demoshow.cxx b/slideshow/test/demoshow.cxx index 9ca1a87d4c11..9b4dc810beb7 100644 --- a/slideshow/test/demoshow.cxx +++ b/slideshow/test/demoshow.cxx @@ -192,10 +192,10 @@ private: } uno::Reference< rendering::XSpriteCanvas > mxCanvas; - ::cppu::OInterfaceContainerHelper maPaintListeners; - ::cppu::OInterfaceContainerHelper maTransformationListeners; - ::cppu::OInterfaceContainerHelper maMouseListeners; - ::cppu::OInterfaceContainerHelper maMouseMotionListeners; + ::comphelper::OInterfaceContainerHelper2 maPaintListeners; + ::comphelper::OInterfaceContainerHelper2 maTransformationListeners; + ::comphelper::OInterfaceContainerHelper2 maMouseListeners; + ::comphelper::OInterfaceContainerHelper2 maMouseMotionListeners; basegfx::B2DHomMatrix maTransform; Size maSize; }; -- cgit