diff options
author | Noel Grandin <noel@peralex.com> | 2013-03-26 14:58:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-04-23 16:05:55 +0200 |
commit | dbb4d4dd98c623c5c9309961ebb0548898b111e1 (patch) | |
tree | bfe8ebcabd010d3081235151fe6c3d5b08612bb7 /svx/inc | |
parent | 6dd58cd811f888aa2158242f08bed5ce9e8fd340 (diff) |
fdo#46808, convert svx::FindTextFieldControl to XComponentContext
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/tbunosearchcontrollers.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/svx/inc/tbunosearchcontrollers.hxx b/svx/inc/tbunosearchcontrollers.hxx index b15c2c5d0804..23eb22fd12b4 100644 --- a/svx/inc/tbunosearchcontrollers.hxx +++ b/svx/inc/tbunosearchcontrollers.hxx @@ -47,7 +47,7 @@ class FindTextFieldControl : public ComboBox public: FindTextFieldControl( Window* pParent, WinBits nStyle, css::uno::Reference< css::frame::XFrame >& xFrame, - const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager ); + const css::uno::Reference< css::uno::XComponentContext >& xContext ); virtual ~FindTextFieldControl(); virtual long PreNotify( NotifyEvent& rNEvt ); @@ -58,7 +58,7 @@ public: private: css::uno::Reference< css::frame::XFrame > m_xFrame; - css::uno::Reference< css::lang::XMultiServiceFactory > m_xServiceManager; + css::uno::Reference< css::uno::XComponentContext > m_xContext; }; class SearchToolbarControllersManager @@ -225,7 +225,7 @@ class FindbarDispatcher : public css::lang::XServiceInfo, { public: - FindbarDispatcher( const css::uno::Reference< css::lang::XMultiServiceFactory >& xFactory ); + FindbarDispatcher(); virtual ~FindbarDispatcher(); // XInterface @@ -259,7 +259,6 @@ public: private: - css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory; css::uno::Reference< css::frame::XFrame > m_xFrame; }; |