diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-25 20:38:10 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-25 20:56:38 +1100 |
commit | 604761d2849238ef163d499c97237a53838625ce (patch) | |
tree | 809abd6927ad46ecbee0197d6669b2017d3bd5f2 | |
parent | 7915bd1929afe6ae2a3fea670c3310462c7e766a (diff) |
vcl: listbox.hxx header cleanup
Remove unnecessary included files, and fix header guard name
Change-Id: I6d24c79faf48e85455d7f5fc3b85c2234190bf1d
-rw-r--r-- | vcl/inc/listbox.hxx | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx index 3490165ee0ec..98b63446f116 100644 --- a/vcl/inc/listbox.hxx +++ b/vcl/inc/listbox.hxx @@ -17,20 +17,14 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_VCL_INC_ILSTBOX_HXX -#define INCLUDED_VCL_INC_ILSTBOX_HXX +#ifndef INCLUDED_VCL_INC_LISTBOX_HXX +#define INCLUDED_VCL_INC_LISTBOX_HXX -#include <vector> -#include <memory> -#include <boost/signals2/signal.hpp> -#include <vcl/image.hxx> -#include <vcl/ctrl.hxx> #include <vcl/button.hxx> #include <vcl/floatwin.hxx> -#include <vcl/lstbox.hxx> -#include <vcl/timer.hxx> +#include <vcl/quickselectionengine.hxx> -#include "vcl/quickselectionengine.hxx" +#include <boost/signals2/signal.hpp> class ScrollBar; class ScrollBarBox; @@ -603,6 +597,6 @@ public: void ImplInitDropDownButton( PushButton* pButton ); -#endif // INCLUDED_VCL_INC_ILSTBOX_HXX +#endif // INCLUDED_VCL_INC_LISTBOX_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |