diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-17 20:45:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-18 09:54:48 +0100 |
commit | 26e5875d7cd082ccb118720ab17bfa9ea52f9d0c (patch) | |
tree | 1fdf57e2a047c6643ec32f28d74676574aea4e73 /sc/source | |
parent | 3e2f43e3d848e3e6e8e339e46118c7db40595e40 (diff) |
VclMultiLineEdit is sufficient here
Change-Id: I0f8d8ae81776f92637880f8ad1a82fcf948c9e5f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88888
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/inc/navipi.hxx | 4 | ||||
-rw-r--r-- | sc/source/ui/navipi/scenwnd.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/navipi.hxx b/sc/source/ui/inc/navipi.hxx index ed8313791ada..44d3c5ad1060 100644 --- a/sc/source/ui/inc/navipi.hxx +++ b/sc/source/ui/inc/navipi.hxx @@ -29,7 +29,7 @@ #include <sfx2/childwin.hxx> #include <svx/sidebar/PanelLayout.hxx> #include "content.hxx" -#include <svtools/svmedit.hxx> +#include <vcl/vclmedit.hxx> class SfxPoolItem; class ScTabViewShell; @@ -103,7 +103,7 @@ protected: private: VclPtr<ScScenarioListBox> aLbScenario; - VclPtr<MultiLineEdit> aEdComment; + VclPtr<VclMultiLineEdit> aEdComment; }; class ColumnEdit : public SpinField diff --git a/sc/source/ui/navipi/scenwnd.cxx b/sc/source/ui/navipi/scenwnd.cxx index d9de448fb0af..74ac7b069bb1 100644 --- a/sc/source/ui/navipi/scenwnd.cxx +++ b/sc/source/ui/navipi/scenwnd.cxx @@ -202,7 +202,7 @@ ScScenarioWindow::ScScenarioWindow( vcl::Window* pParent, const OUString& aQH_Li const OUString& aQH_Comment) : Window ( pParent, WB_TABSTOP | WB_DIALOGCONTROL ), aLbScenario ( VclPtr<ScScenarioListBox>::Create(*this) ), - aEdComment ( VclPtr<MultiLineEdit>::Create(this, WB_BORDER | WB_LEFT | WB_READONLY | WB_VSCROLL | WB_TABSTOP) ) + aEdComment ( VclPtr<VclMultiLineEdit>::Create(this, WB_BORDER | WB_LEFT | WB_READONLY | WB_VSCROLL | WB_TABSTOP) ) { vcl::Font aFont( GetFont() ); aFont.SetTransparent( true ); |