summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-07-19 13:32:40 +0200
committerNoel Grandin <noel@peralex.com>2013-07-23 10:05:45 +0200
commit2f4c796c4db95a52b9478049e9872b92a93474b9 (patch)
treeec2cf76cc8165aa22de48896040257b4bce5ed90 /framework
parent9dbb8db06d7c5620fec586a87237b3e07dfd0fb3 (diff)
remove unused field
Change-Id: I1b81b39a4c66895c6f6b7d40e00ea2a483d8b4fd
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/recording/dispatchrecordersupplier.hxx5
-rw-r--r--framework/source/recording/dispatchrecordersupplier.cxx4
2 files changed, 1 insertions, 8 deletions
diff --git a/framework/inc/recording/dispatchrecordersupplier.hxx b/framework/inc/recording/dispatchrecordersupplier.hxx
index b254e1dd1fae..ea4796806c8a 100644
--- a/framework/inc/recording/dispatchrecordersupplier.hxx
+++ b/framework/inc/recording/dispatchrecordersupplier.hxx
@@ -68,11 +68,6 @@ class DispatchRecorderSupplier : // baseclasses
*/
css::uno::Reference< css::frame::XDispatchRecorder > m_xDispatchRecorder;
- //_______________________________________
- /** reference to the global uno service manager
- */
- css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory;
-
//___________________________________________
// uno interface
diff --git a/framework/source/recording/dispatchrecordersupplier.cxx b/framework/source/recording/dispatchrecordersupplier.cxx
index 9817639fca7a..fc2990983cca 100644
--- a/framework/source/recording/dispatchrecordersupplier.cxx
+++ b/framework/source/recording/dispatchrecordersupplier.cxx
@@ -55,13 +55,12 @@ DEFINE_INIT_SERVICE(
@descr Because an instance will be initialized by her interface methods
it's not neccessary to do anything here.
*/
-DispatchRecorderSupplier::DispatchRecorderSupplier( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory )
+DispatchRecorderSupplier::DispatchRecorderSupplier( const css::uno::Reference< css::lang::XMultiServiceFactory >& )
// init baseclasses first!
// Attention: Don't change order of initialization!
: ThreadHelpBase ( &Application::GetSolarMutex() )
// init member
, m_xDispatchRecorder( NULL )
- , m_xFactory ( xFactory )
{
}
@@ -74,7 +73,6 @@ DispatchRecorderSupplier::DispatchRecorderSupplier( const css::uno::Reference< c
*/
DispatchRecorderSupplier::~DispatchRecorderSupplier()
{
- m_xFactory = NULL;
m_xDispatchRecorder = NULL;
}