diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-20 08:44:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-20 10:07:10 +0200 |
commit | 1c5cae479bebd2d325182adc2c9821fd948fd1bd (patch) | |
tree | 639e50ced55620dc2d1e9eb5a7ed8a6298c4de09 /sw | |
parent | da24355234ec12f2f4c652113dbbb1216ba5492c (diff) |
loplugin:unusedmethods
Change-Id: Ib7a9b1b0802ca751da258065e89b412b090bb672
Reviewed-on: https://gerrit.libreoffice.org/36718
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/pch/precompiled_msword.hxx | 1 | ||||
-rw-r--r-- | sw/inc/pch/precompiled_swui.hxx | 1 | ||||
-rw-r--r-- | sw/inc/pch/precompiled_vbaswobj.hxx | 1 | ||||
-rw-r--r-- | sw/inc/shellres.hxx | 1 | ||||
-rw-r--r-- | sw/source/core/crsr/callnk.cxx | 8 | ||||
-rw-r--r-- | sw/source/core/crsr/callnk.hxx | 3 |
6 files changed, 0 insertions, 15 deletions
diff --git a/sw/inc/pch/precompiled_msword.hxx b/sw/inc/pch/precompiled_msword.hxx index f595cb805e5a..bb4ba923e5ba 100644 --- a/sw/inc/pch/precompiled_msword.hxx +++ b/sw/inc/pch/precompiled_msword.hxx @@ -647,7 +647,6 @@ #include <tools/mapunit.hxx> #include <tools/mempool.hxx> #include <tools/poly.hxx> -#include <tools/rc.hxx> #include <tools/ref.hxx> #include <tools/resid.hxx> #include <tools/resmgr.hxx> diff --git a/sw/inc/pch/precompiled_swui.hxx b/sw/inc/pch/precompiled_swui.hxx index 974fcb88910f..2d586e6944b8 100644 --- a/sw/inc/pch/precompiled_swui.hxx +++ b/sw/inc/pch/precompiled_swui.hxx @@ -579,7 +579,6 @@ #include <tools/mempool.hxx> #include <tools/multisel.hxx> #include <tools/poly.hxx> -#include <tools/rc.hxx> #include <tools/ref.hxx> #include <tools/resid.hxx> #include <tools/resmgr.hxx> diff --git a/sw/inc/pch/precompiled_vbaswobj.hxx b/sw/inc/pch/precompiled_vbaswobj.hxx index 7d06a8772e9e..f8965404cbc6 100644 --- a/sw/inc/pch/precompiled_vbaswobj.hxx +++ b/sw/inc/pch/precompiled_vbaswobj.hxx @@ -375,7 +375,6 @@ #include <tools/mempool.hxx> #include <tools/multisel.hxx> #include <tools/poly.hxx> -#include <tools/rc.hxx> #include <tools/ref.hxx> #include <tools/resid.hxx> #include <tools/resmgr.hxx> diff --git a/sw/inc/shellres.hxx b/sw/inc/shellres.hxx index 469486668801..9015f844320c 100644 --- a/sw/inc/shellres.hxx +++ b/sw/inc/shellres.hxx @@ -21,7 +21,6 @@ #include <swdllapi.h> #include <rtl/ustring.hxx> -#include <tools/rc.hxx> #include <vcl/bitmap.hxx> struct SW_DLLPUBLIC ShellResource diff --git a/sw/source/core/crsr/callnk.cxx b/sw/source/core/crsr/callnk.cxx index dbb7ec74714c..724e2975bed5 100644 --- a/sw/source/core/crsr/callnk.cxx +++ b/sw/source/core/crsr/callnk.cxx @@ -36,14 +36,6 @@ #include <breakit.hxx> #include <vcl/window.hxx> -SwCallLink::SwCallLink( SwCursorShell & rSh, sal_uLong nAktNode, sal_Int32 nAktContent, - SwNodeType nAktNdTyp, long nLRPos, bool bAktSelection ) - : rShell( rSh ), nNode( nAktNode ), nContent( nAktContent ), - nNdTyp( nAktNdTyp ), nLeftFramePos( nLRPos ), - bHasSelection( bAktSelection ) -{ -} - SwCallLink::SwCallLink( SwCursorShell & rSh ) : rShell( rSh ) { diff --git a/sw/source/core/crsr/callnk.hxx b/sw/source/core/crsr/callnk.hxx index 21e7ddf4acae..017a0d5852cf 100644 --- a/sw/source/core/crsr/callnk.hxx +++ b/sw/source/core/crsr/callnk.hxx @@ -37,9 +37,6 @@ public: bool bHasSelection; explicit SwCallLink( SwCursorShell & rSh ); - SwCallLink( SwCursorShell & rSh, sal_uLong nAktNode, sal_Int32 nAktContent, - SwNodeType nAktNdTyp, long nLRPos, - bool bAktSelection ); ~SwCallLink(); static long getLayoutFrame( const SwRootFrame*, SwTextNode& rNd, sal_Int32 nCntPos, bool bCalcFrame ); |