diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-20 13:39:38 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2018-04-21 04:12:04 +0200 |
commit | 94acabe8d0cb555e76635c4bceeb48a14bd16a2b (patch) | |
tree | 5342dac802e5ae009c12734bb2d23e482a6166f1 /include | |
parent | 9374352f242d2dcfd39a3a6f0504efbaf1abb2dc (diff) |
loplugin:unusedmethods
Change-Id: I9dc6e81149eae3ba2284fa7fe608dd9252503dce
Reviewed-on: https://gerrit.libreoffice.org/53197
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdmodel.hxx | 1 | ||||
-rw-r--r-- | include/svx/svdpage.hxx | 1 | ||||
-rw-r--r-- | include/svx/txencbox.hxx | 25 | ||||
-rw-r--r-- | include/vcl/bitmap.hxx | 3 | ||||
-rw-r--r-- | include/vcl/bitmapex.hxx | 8 | ||||
-rw-r--r-- | include/vcl/slider.hxx | 2 |
6 files changed, 0 insertions, 40 deletions
diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx index 590011ce9f66..12636ad48543 100644 --- a/include/svx/svdmodel.hxx +++ b/include/svx/svdmodel.hxx @@ -299,7 +299,6 @@ public: void RefDeviceChanged(); // not yet implemented // default font height in logical units void SetDefaultFontHeight(sal_Int32 nVal); - sal_Int32 GetDefaultFontHeight() const { return mnDefTextHgt; } // default tabulator width for the EditEngine void SetDefaultTabulator(sal_uInt16 nVal); sal_uInt16 GetDefaultTabulator() const { return nDefaultTabulator; } diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx index a6ab2f97229f..38a994ff9284 100644 --- a/include/svx/svdpage.hxx +++ b/include/svx/svdpage.hxx @@ -91,7 +91,6 @@ private: public: SdrObjList(SdrPage* pNewPage = nullptr); virtual ~SdrObjList(); - SdrObjList* CloneSdrObjList(SdrModel* pNewModel = nullptr) const; void CopyObjects(const SdrObjList& rSrcList, SdrModel* pNewModel = nullptr); /// clean up everything (without Undo) diff --git a/include/svx/txencbox.hxx b/include/svx/txencbox.hxx index 41e761f6c6a4..e8e193e73da3 100644 --- a/include/svx/txencbox.hxx +++ b/include/svx/txencbox.hxx @@ -120,31 +120,6 @@ public: sal_uInt32 nButIncludeInfoFlags = 0 ); - /** Fill with all encodings known to the dbtools::OCharsetMap but exclude - those matching one or more given flags as defined in rtl/tencinfo.h - - <p> If nButIncludeInfoFlags is given, encodings are included even if they - match nExcludeInfoFlags. Thus it is possible to exclude 16/32-bit - Unicode with RTL_TEXTENCODING_INFO_UNICODE but to include UTF7 and UTF8 - with RTL_TEXTENCODING_INFO_MIME </p> - - @param bExcludeImportSubsets - If <TRUE/>, some specific encodings are not listed, as they are a - subset of another encoding. This is the case for - RTL_TEXTENCODING_GB_2312, RTL_TEXTENCODING_GBK, - RTL_TEXTENCODING_MS_936, which are covered by - RTL_TEXTENCODING_GB_18030. Normally, this flag should be set to - <TRUE/> whenever the box is used in import dialogs. */ - void FillFromDbTextEncodingMap( - bool bExcludeImportSubsets, - sal_uInt32 nExcludeInfoFlags = 0 - ); - - /** Fill with all known MIME encodings and select the best according to - <method>GetBestMimeEncoding</method> - */ - void FillWithMimeAndSelectBest(); - void InsertTextEncoding( const rtl_TextEncoding nEnc ); void InsertTextEncoding( const rtl_TextEncoding nEnc, diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx index ad1efb8bb862..d46dc7ddf24e 100644 --- a/include/vcl/bitmap.hxx +++ b/include/vcl/bitmap.hxx @@ -653,9 +653,6 @@ public: const std::shared_ptr<SalBitmap>& ImplGetSalBitmap() const { return mxSalBmp; } SAL_DLLPRIVATE void ImplSetSalBitmap( const std::shared_ptr<SalBitmap>& xImpBmp ); - SAL_DLLPRIVATE bool ImplScaleFast( const double& rScaleX, const double& rScaleY ); - SAL_DLLPRIVATE bool ImplScaleInterpolate( const double& rScaleX, const double& rScaleY ); - SAL_DLLPRIVATE bool ImplMakeGreyscales( sal_uInt16 nGreyscales ); SAL_DLLPRIVATE bool ImplDitherMatrix(); SAL_DLLPRIVATE bool ImplDitherFloyd(); diff --git a/include/vcl/bitmapex.hxx b/include/vcl/bitmapex.hxx index 390a2c0eef45..d7c2560485c4 100644 --- a/include/vcl/bitmapex.hxx +++ b/include/vcl/bitmapex.hxx @@ -109,14 +109,6 @@ public: */ bool Convert( BmpConversion eConversion ); - /** Apply a dither algorithm to the bitmap - - This method dithers the bitmap inplace, i.e. a true color - bitmap is converted to a paletted bitmap, reducing the color - deviation by error diffusion. - */ - bool Dither(); - /** Crop the bitmap @param rRectPixel diff --git a/include/vcl/slider.hxx b/include/vcl/slider.hxx index 426727c15ae7..cc4919b58fea 100644 --- a/include/vcl/slider.hxx +++ b/include/vcl/slider.hxx @@ -107,8 +107,6 @@ public: Size CalcWindowSizePixel(); - void SetLinkedField(VclPtr<NumericField> const & pField); - void SetSlideHdl( const Link<Slider*,void>& rLink ) { maSlideHdl = rLink; } void SetEndSlideHdl( const Link<Slider*,void>& rLink ) { maEndSlideHdl = rLink; } }; |