diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-06 14:33:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-07 08:27:26 +0200 |
commit | 3fbc3adefd0b2140ff7697cbc3d4b71ed92aa5ff (patch) | |
tree | 40adbe77397152afd9f35eaa6613d94fe7c31e5d /framework/source/uielement | |
parent | 6fbbb8504a879815547681f7494153d4c1c35783 (diff) |
loplugin:mergeclasses
Change-Id: I1347e51ef727da81be0c7937cad6e3f5edbf15a8
Diffstat (limited to 'framework/source/uielement')
-rw-r--r-- | framework/source/uielement/dropdownboxtoolbarcontroller.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/uielement/dropdownboxtoolbarcontroller.cxx b/framework/source/uielement/dropdownboxtoolbarcontroller.cxx index 34f0bfe842aa..8a086dd09690 100644 --- a/framework/source/uielement/dropdownboxtoolbarcontroller.cxx +++ b/framework/source/uielement/dropdownboxtoolbarcontroller.cxx @@ -52,7 +52,7 @@ namespace framework class ListBoxControl : public ListBox { public: - ListBoxControl( vcl::Window* pParent, WinBits nStyle, IListBoxListener* pListBoxListener ); + ListBoxControl( vcl::Window* pParent, WinBits nStyle, DropdownToolbarController* pListBoxListener ); virtual ~ListBoxControl(); virtual void dispose() SAL_OVERRIDE; @@ -63,10 +63,10 @@ class ListBoxControl : public ListBox virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE; private: - IListBoxListener* m_pListBoxListener; + DropdownToolbarController* m_pListBoxListener; }; -ListBoxControl::ListBoxControl( vcl::Window* pParent, WinBits nStyle, IListBoxListener* pListBoxListener ) : +ListBoxControl::ListBoxControl( vcl::Window* pParent, WinBits nStyle, DropdownToolbarController* pListBoxListener ) : ListBox( pParent, nStyle ) , m_pListBoxListener( pListBoxListener ) { |