summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-17 12:39:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-18 12:18:59 +0200
commit2ff43210210492fb5b656eb60262163c6fe62b64 (patch)
tree50485ddb8d75eae5d5ea76d396feb6e71886cc9c /svtools
parentbe3b1a8393ca3e77f31bea5d9caa7271fd53e9e4 (diff)
remove newly unused ExtMultiLineEdit
Change-Id: If9a1639d28aa7a540f301657387a04309ba82580 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100873 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/Library_svt.mk1
-rw-r--r--svtools/inc/svmedit2.hxx43
-rw-r--r--svtools/source/edit/svmedit2.cxx55
3 files changed, 0 insertions, 99 deletions
diff --git a/svtools/Library_svt.mk b/svtools/Library_svt.mk
index f094f0ed0cd2..3367324e843a 100644
--- a/svtools/Library_svt.mk
+++ b/svtools/Library_svt.mk
@@ -113,7 +113,6 @@ $(eval $(call gb_Library_add_exception_objects,svt,\
svtools/source/dialogs/ServerDetailsControls \
svtools/source/edit/editsyntaxhighlighter \
svtools/source/edit/svmedit \
- svtools/source/edit/svmedit2 \
svtools/source/edit/textwindowpeer \
svtools/source/filter/SvFilterOptionsDialog \
svtools/source/filter/DocumentToGraphicRenderer \
diff --git a/svtools/inc/svmedit2.hxx b/svtools/inc/svmedit2.hxx
deleted file mode 100644
index 7d45700349a9..000000000000
--- a/svtools/inc/svmedit2.hxx
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef INCLUDED_SVTOOLS_SVMEDIT2_HXX
-#define INCLUDED_SVTOOLS_SVMEDIT2_HXX
-
-#include "svmedit.hxx"
-
-class TextAttrib;
-
-class ExtMultiLineEdit final : public MultiLineEdit
-{
-public:
- ExtMultiLineEdit( vcl::Window* pParent, WinBits nWinStyle );
-
- // methods of TextView
- void InsertText( const OUString& rNew );
- void SetAutoScroll( bool bAutoScroll );
-
- // methods of TextEngine
- void SetAttrib( const TextAttrib& rAttr, sal_uInt32 nPara, sal_Int32 nStart, sal_Int32 nEnd );
- void SetLeftMargin( sal_uInt16 nLeftMargin );
- sal_uInt32 GetParagraphCount() const;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svtools/source/edit/svmedit2.cxx b/svtools/source/edit/svmedit2.cxx
deleted file mode 100644
index fde13f6c7f51..000000000000
--- a/svtools/source/edit/svmedit2.cxx
+++ /dev/null
@@ -1,55 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-
-#include <svmedit2.hxx>
-#include <vcl/xtextedt.hxx>
-#include <vcl/textview.hxx>
-
-ExtMultiLineEdit::ExtMultiLineEdit( vcl::Window* pParent, WinBits nWinStyle ) :
- MultiLineEdit( pParent, nWinStyle )
-{
-}
-
-void ExtMultiLineEdit::InsertText( const OUString& rNew )
-{
- GetTextView()->InsertText( rNew );
-}
-
-void ExtMultiLineEdit::SetAutoScroll( bool bAutoScroll )
-{
- GetTextView()->SetAutoScroll( bAutoScroll );
-}
-
-void ExtMultiLineEdit::SetAttrib( const TextAttrib& rAttr, sal_uInt32 nPara, sal_Int32 nStart, sal_Int32 nEnd )
-{
- GetTextEngine()->SetAttrib( rAttr, nPara, nStart, nEnd );
-}
-
-void ExtMultiLineEdit::SetLeftMargin( sal_uInt16 nLeftMargin )
-{
- GetTextEngine()->SetLeftMargin( nLeftMargin );
-}
-
-sal_uInt32 ExtMultiLineEdit::GetParagraphCount() const
-{
- return GetTextEngine()->GetParagraphCount();
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */