summaryrefslogtreecommitdiffstats
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-10-10 19:33:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-10-10 22:20:17 +0200
commit4b988449101998b37f4c47a9eea63dc3d46472e9 (patch)
treebb1e5c9afca8391255567612dfdc8c630055899a /editeng
parentwe are cloning the contents of a temporary std::unique_ptr (diff)
downloadcore-4b988449101998b37f4c47a9eea63dc3d46472e9.tar.gz
core-4b988449101998b37f4c47a9eea63dc3d46472e9.zip
drop newly unused OutlinerParaObject ctor variant
Change-Id: I6fcd6eb9e7ed2519e6df08fe09c38652e4e76439 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104176 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/outliner/outlobj.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/editeng/source/outliner/outlobj.cxx b/editeng/source/outliner/outlobj.cxx
index 61b0a40d6b98..c8a589911079 100644
--- a/editeng/source/outliner/outlobj.cxx
+++ b/editeng/source/outliner/outlobj.cxx
@@ -67,11 +67,6 @@ OutlinerParaObject::OutlinerParaObject(
{
}
-OutlinerParaObject::OutlinerParaObject( const EditTextObject& rTextObj ) :
- mpImpl(OutlinerParaObjData(rTextObj.Clone(), ParagraphDataVector(), true))
-{
-}
-
OutlinerParaObject::OutlinerParaObject( std::unique_ptr<EditTextObject> pTextObj ) :
mpImpl(OutlinerParaObjData(std::move(pTextObj), ParagraphDataVector(), true))
{