summaryrefslogtreecommitdiff
path: root/svtools/inc
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/inc
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/inc')
-rw-r--r--svtools/inc/svmedit2.hxx43
1 files changed, 0 insertions, 43 deletions
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: */