summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-06-08 16:18:55 +0200
committerStephan Bergmann <sbergman@redhat.com>2021-06-09 22:52:24 +0200
commitaa9cb8e14749e7fb7a83b55a2bb095501f731a18 (patch)
tree0f5b3aa246563bee6df320a2bb79b5d1cf985454 /sw
parent17694c906f94a195a2d5086e0e87afa1c852107b (diff)
-Werror,-Wunused-but-set-variable (Clang 13 trunk)
For both aRelNullPt local variables in SwFEShell::ImpEndCreate and SwFEShell::CheckUnboundObjects the (only) reads were removed with 5f7d6695ab561758acb27a93f14e08ee960324d5 "INTEGRATION: CWS swdrawpositioning". (And nIdent in SwFEShell::CheckUnboundObjects thus becomes unused, too.) Change-Id: Ifb4851b4e10b7370f2fc2f25bcdba77d532e77a5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116845 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/frmedt/feshview.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/sw/source/core/frmedt/feshview.cxx b/sw/source/core/frmedt/feshview.cxx
index d0a980fed49b..6e070d448399 100644
--- a/sw/source/core/frmedt/feshview.cxx
+++ b/sw/source/core/frmedt/feshview.cxx
@@ -2133,12 +2133,6 @@ bool SwFEShell::ImpEndCreate()
GetDoc()->GetIDocumentUndoRedo().DoDrawUndo(bRestore);
}
- Point aRelNullPt;
- if( OBJ_CAPTION == nIdent )
- aRelNullPt = static_cast<SdrCaptionObj&>(rSdrObj).GetTailPos();
- else
- aRelNullPt = rBound.TopLeft();
-
aSet.Put( aAnch );
aSet.Put( SwFormatSurround( css::text::WrapTextMode_THROUGH ) );
// OD 2004-03-30 #i26791# - set horizontal position
@@ -2826,12 +2820,6 @@ void SwFEShell::CheckUnboundObjects()
pPage = pLast;
OSL_ENSURE( pPage, "Page not found." );
- // Alien identifier should roll into the default,
- // Duplications are possible!!
- sal_uInt16 nIdent =
- Imp()->GetDrawView()->GetCurrentObjInventor() == SdrInventor::Default ?
- Imp()->GetDrawView()->GetCurrentObjIdentifier() : 0xFFFF;
-
SwFormatAnchor aAnch;
{
const SwContentFrame *const pAnch = ::FindAnchor(pPage, aPt, true);
@@ -2850,13 +2838,6 @@ void SwFEShell::CheckUnboundObjects()
RES_SURROUND, RES_ANCHOR>{} );
aSet.Put( aAnch );
- Point aRelNullPt;
-
- if( OBJ_CAPTION == nIdent )
- aRelNullPt = static_cast<SdrCaptionObj*>(pObj)->GetTailPos();
- else
- aRelNullPt = rBound.TopLeft();
-
aSet.Put( aAnch );
aSet.Put( SwFormatSurround( css::text::WrapTextMode_THROUGH ) );
SwFrameFormat* pFormat = getIDocumentLayoutAccess().MakeLayoutFormat( RndStdIds::DRAW_OBJECT, &aSet );