summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-17 20:45:56 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-02-18 09:54:48 +0100
commit26e5875d7cd082ccb118720ab17bfa9ea52f9d0c (patch)
tree1fdf57e2a047c6643ec32f28d74676574aea4e73 /sc
parent3e2f43e3d848e3e6e8e339e46118c7db40595e40 (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')
-rw-r--r--sc/source/ui/inc/navipi.hxx4
-rw-r--r--sc/source/ui/navipi/scenwnd.cxx2
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 );