diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-03-13 12:23:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-03-14 08:11:55 +0100 |
commit | ebe1f639cf65c20cee70aa55176bfb67e7b915f7 (patch) | |
tree | 3d80dace017cc053b69a53bfc2cce5ae0cf2f9eb /include | |
parent | b8d3d4ad0f5bf4f449118214a91219b98ee506c3 (diff) |
loplugin:unusedmethods
Change-Id: I851eba4ca80eac9ee5896df53fbcd0f5ad125763
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112433
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/editview.hxx | 1 | ||||
-rw-r--r-- | include/tools/zcodec.hxx | 4 | ||||
-rw-r--r-- | include/vcl/alpha.hxx | 1 | ||||
-rw-r--r-- | include/vcl/toolkit/floatwin.hxx | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx index 3876a9a75d05..379218b1c619 100644 --- a/include/editeng/editview.hxx +++ b/include/editeng/editview.hxx @@ -261,7 +261,6 @@ public: /// Informs this edit view about which view shell contains it. void RegisterViewShell(OutlinerViewShell* pViewShell); - const OutlinerViewShell* GetViewShell(); /// Informs this edit view about which other shell listens to it. void RegisterOtherShell(OutlinerViewShell* pOtherShell); diff --git a/include/tools/zcodec.hxx b/include/tools/zcodec.hxx index f8bdc44451dc..17e44a500a41 100644 --- a/include/tools/zcodec.hxx +++ b/include/tools/zcodec.hxx @@ -68,10 +68,6 @@ public: void Write( SvStream& rOStm, const sal_uInt8* pData, sal_uInt32 nSize ); tools::Long Read( SvStream& rIStm, sal_uInt8* pData, sal_uInt32 nSize ); - tools::Long ReadAsynchron( SvStream& rIStm, sal_uInt8* pData, sal_uInt32 nSize ); - - void SetBreak( size_t ); - size_t GetBreak() const; }; #endif diff --git a/include/vcl/alpha.hxx b/include/vcl/alpha.hxx index c7ee2d715ce5..6bebdb8c57cf 100644 --- a/include/vcl/alpha.hxx +++ b/include/vcl/alpha.hxx @@ -50,7 +50,6 @@ public: Bitmap const & GetBitmap() const; void Erase( sal_uInt8 cTransparency ); - void Replace( const Bitmap& rMask, sal_uInt8 rReplaceTransparency ); void Replace( sal_uInt8 cSearchTransparency, sal_uInt8 cReplaceTransparency ); void BlendWith(const Bitmap& rOther); diff --git a/include/vcl/toolkit/floatwin.hxx b/include/vcl/toolkit/floatwin.hxx index bbfddabcce68..6799ac884520 100644 --- a/include/vcl/toolkit/floatwin.hxx +++ b/include/vcl/toolkit/floatwin.hxx @@ -135,8 +135,6 @@ public: void SetPopupModeEndHdl( const Link<FloatingWindow*,void>& rLink ) { maPopupModeEndHdl = rLink; } bool GrabsFocus() const { return mbGrabFocus; } - - static Point CalcFloatingPosition( vcl::Window* pWindow, const tools::Rectangle& rRect, FloatWinPopupFlags nFlags, sal_uInt16& rArrangeIndex ); }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |