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 | |
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')
-rw-r--r-- | include/sfx2/childwin.hxx | 2 | ||||
-rw-r--r-- | include/svtools/inettbc.hxx | 1 | ||||
-rw-r--r-- | include/unotools/datetime.hxx | 2 | ||||
-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 |
8 files changed, 0 insertions, 17 deletions
diff --git a/include/sfx2/childwin.hxx b/include/sfx2/childwin.hxx index 626b2c85a298..63abda89d932 100644 --- a/include/sfx2/childwin.hxx +++ b/include/sfx2/childwin.hxx @@ -169,8 +169,6 @@ public: SfxChildAlignment GetAlignment() const { return eChildAlignment; } void SetAlignment(SfxChildAlignment eAlign); - Size GetSizePixel() const - { return pWindow->GetSizePixel(); } virtual void Hide(); virtual void Show( ShowFlags nFlags ); sal_uInt16 GetPosition(); diff --git a/include/svtools/inettbc.hxx b/include/svtools/inettbc.hxx index 3f00d75f2594..bf99e4d838c4 100644 --- a/include/svtools/inettbc.hxx +++ b/include/svtools/inettbc.hxx @@ -72,7 +72,6 @@ public: void SetOnlyDirectories( bool bDir ); void SetNoURLSelection( bool bSet ); INetProtocol GetSmartProtocol() const { return eSmartProtocol; } - void SetSmartProtocol( INetProtocol eProt ); OUString GetURL(); void DisableHistory(); diff --git a/include/unotools/datetime.hxx b/include/unotools/datetime.hxx index 2f55faedbc2a..c83da27040aa 100644 --- a/include/unotools/datetime.hxx +++ b/include/unotools/datetime.hxx @@ -47,8 +47,6 @@ namespace utl UNOTOOLS_DLLPUBLIC void typeConvert(const DateTime& _rDateTime, css::util::DateTime& _rOut); UNOTOOLS_DLLPUBLIC void typeConvert(const css::util::DateTime& _rDateTime, DateTime& _rOut); - UNOTOOLS_DLLPUBLIC void extractDate(const css::util::DateTime& _rDateTime, css::util::Date& _rOut); - UNOTOOLS_DLLPUBLIC OUString toISO8601(const css::util::DateTime& _rDateTime); UNOTOOLS_DLLPUBLIC bool ISO8601parseDateTime(const OUString &i_rIn, css::util::DateTime& o_rDateTime); UNOTOOLS_DLLPUBLIC bool ISO8601parseDate(const OUString &i_rIn, css::util::Date& o_rDate); 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. */ |