diff options
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/inc/pch/precompiled_basctl.hxx | 1 | ||||
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basctl/inc/pch/precompiled_basctl.hxx b/basctl/inc/pch/precompiled_basctl.hxx index ccec453c65c7..61e03945be69 100644 --- a/basctl/inc/pch/precompiled_basctl.hxx +++ b/basctl/inc/pch/precompiled_basctl.hxx @@ -161,7 +161,6 @@ #include <vcl/outdev.hxx> #include <vcl/outdevmap.hxx> #include <vcl/outdevstate.hxx> -#include <vcl/pointr.hxx> #include <vcl/ptrstyle.hxx> #include <vcl/quickselectionengine.hxx> #include <vcl/region.hxx> diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 5ab200ceaf63..e1d526df52cf 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -44,6 +44,7 @@ #include <vcl/textview.hxx> #include <vcl/txtattr.hxx> #include <vcl/settings.hxx> +#include <vcl/ptrstyle.hxx> #include <svtools/textwindowpeer.hxx> #include <vcl/treelistentry.hxx> #include <vcl/taskpanelist.hxx> @@ -231,7 +232,7 @@ EditorWindow::EditorWindow (vcl::Window* pParent, ModulWindow* pModulWindow) : pCodeCompleteWnd(VclPtr<CodeCompleteWindow>::Create(this)) { SetBackground(Wallpaper(rModulWindow.GetLayout().GetBackgroundColor())); - SetPointer( Pointer( PointerStyle::Text ) ); + SetPointer( PointerStyle::Text ); SetHelpId( HID_BASICIDE_EDITORWINDOW ); listener_ = new ChangesListener(*this); |