diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-17 05:41:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-17 08:18:11 +0200 |
commit | 7bad1516c5f2a85b5bae3f49261ac2494cbb7162 (patch) | |
tree | e16e60b92b2bead4e22a24949786d04008cf59ff /include/vcl | |
parent | ff55ad1aceb10b900254c8ad3629775b7789d60a (diff) |
loplugin:unusedmethods
Change-Id: Ie2285f64919d1c83b0a8df4ceb827f731e5cd609
Reviewed-on: https://gerrit.libreoffice.org/75739
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/bitmapex.hxx | 1 | ||||
-rw-r--r-- | include/vcl/gfxlink.hxx | 1 | ||||
-rw-r--r-- | include/vcl/ivctrl.hxx | 1 | ||||
-rw-r--r-- | include/vcl/texteng.hxx | 2 | ||||
-rw-r--r-- | include/vcl/textview.hxx | 7 |
5 files changed, 0 insertions, 12 deletions
diff --git a/include/vcl/bitmapex.hxx b/include/vcl/bitmapex.hxx index 1067c0c45b52..46c310482886 100644 --- a/include/vcl/bitmapex.hxx +++ b/include/vcl/bitmapex.hxx @@ -470,7 +470,6 @@ private: friend class ImpGraphic; friend class OutputDevice; friend bool VCL_DLLPUBLIC WriteDIBBitmapEx(const BitmapEx& rSource, SvStream& rOStm); - friend void ReadRawDIB(); friend bool VCL_DLLPUBLIC ReadRawDIB(BitmapEx& rTarget, const unsigned char* pBuf, const ScanlineFormat nFormat, const int nHeight, diff --git a/include/vcl/gfxlink.hxx b/include/vcl/gfxlink.hxx index b595023efeb5..55dcf25ef6a5 100644 --- a/include/vcl/gfxlink.hxx +++ b/include/vcl/gfxlink.hxx @@ -106,7 +106,6 @@ public: bool ExportNative( SvStream& rOStream ) const; - void SwapOut(); bool IsSwappedOut() const { return( bool(mpSwapOutData) ); } bool IsEMF() const; // WMF & EMF stored under the same type (NativeWmf) diff --git a/include/vcl/ivctrl.hxx b/include/vcl/ivctrl.hxx index e3c630a719b3..e7b89f1bc2f1 100644 --- a/include/vcl/ivctrl.hxx +++ b/include/vcl/ivctrl.hxx @@ -213,7 +213,6 @@ public: virtual ~SvtIconChoiceCtrl() override; virtual void dispose() override; - void SetStyle( WinBits nWinStyle ); WinBits GetStyle() const; void SetChoiceWithCursor(); diff --git a/include/vcl/texteng.hxx b/include/vcl/texteng.hxx index 95da903bc1d4..1df2b87c702b 100644 --- a/include/vcl/texteng.hxx +++ b/include/vcl/texteng.hxx @@ -284,8 +284,6 @@ public: const TextAttrib* FindAttrib( const TextPaM& rPaM, sal_uInt16 nWhich ) const; const TextCharAttrib* FindCharAttrib( const TextPaM& rPaM, sal_uInt16 nWhich ) const; - void RemoveAttribs( sal_uInt32 nPara, sal_uInt16 nWhich ); - std::unique_ptr<TextCharAttrib> RemoveAttrib( sal_uInt32 nPara, const TextCharAttrib& rAttrib ); void RemoveAttribs( sal_uInt32 nPara ); void SetAttrib( const TextAttrib& rAttr, sal_uInt32 nPara, sal_Int32 nStart, sal_Int32 nEnd, bool bIdleFormatAndUpdate = true ); diff --git a/include/vcl/textview.hxx b/include/vcl/textview.hxx index 0b10eea1d47a..e706d0c42e00 100644 --- a/include/vcl/textview.hxx +++ b/include/vcl/textview.hxx @@ -208,13 +208,6 @@ public: TextPaM CursorEndOfDoc(); /** - Drag and Drop, deleting and selection regards all text that has an attribute - TEXTATTR_PROTECTED set as one entity. Drag and dropped text is automatically - attributed as protected. - */ - void SupportProtectAttribute(bool bSupport); - - /** Returns the number in paragraph of the line in which the cursor is blinking if enabled, -1 otherwise. */ |