diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-13 13:43:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-13 13:59:52 +0200 |
commit | 2b4fd256e9f8594c31e7e8045dccae5afdc62e16 (patch) | |
tree | 09d248841a5f0765516a7cf82b72cec529287eb7 /sw/source/uibase/frmdlg | |
parent | 20b0c8fc3bb5bcf4ae8ba81c88aaa5726dbcf9e2 (diff) |
loplugin:unusedmethods unused return value in sw/
Change-Id: Iaec71124b04ed678686d646df3ff0892585d3d50
Diffstat (limited to 'sw/source/uibase/frmdlg')
-rw-r--r-- | sw/source/uibase/frmdlg/frmmgr.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/uibase/frmdlg/frmmgr.cxx b/sw/source/uibase/frmdlg/frmmgr.cxx index b6d8ed4f12cb..6f7ca97a60b2 100644 --- a/sw/source/uibase/frmdlg/frmmgr.cxx +++ b/sw/source/uibase/frmdlg/frmmgr.cxx @@ -159,7 +159,7 @@ void SwFlyFrameAttrMgr::UpdateFlyFrame() } // insert frame -bool SwFlyFrameAttrMgr::InsertFlyFrame() +void SwFlyFrameAttrMgr::InsertFlyFrame() { m_pOwnSh->StartAllAction(); @@ -173,7 +173,6 @@ bool SwFlyFrameAttrMgr::InsertFlyFrame() FrameNotify(m_pOwnSh, FLY_DRAG_START); } m_pOwnSh->EndAllAction(); - return bRet; } // Insert frames of type eAnchorType. Position and size are being set explicitly. |