diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-05-19 13:35:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-05-20 12:55:07 +0200 |
commit | 8270eb5d5600cc84dbf5f0e339f90c4519ef88bb (patch) | |
tree | 6253324edd37e5b13c17436a6378ee58ba6a723b /include | |
parent | 4f3dd930324552aec40b333d750ec7b95ff03c26 (diff) |
loplugin:unusedmethods
Change-Id: Ief95f111350808f010539bb733a553007d30a9df
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152006
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/gallery1.hxx | 2 | ||||
-rw-r--r-- | include/vcl/alpha.hxx | 1 | ||||
-rw-r--r-- | include/vcl/bitmap.hxx | 12 | ||||
-rw-r--r-- | include/vcl/svapp.hxx | 8 |
4 files changed, 0 insertions, 23 deletions
diff --git a/include/svx/gallery1.hxx b/include/svx/gallery1.hxx index 6f159e3b5139..97e5f4569a9a 100644 --- a/include/svx/gallery1.hxx +++ b/include/svx/gallery1.hxx @@ -55,8 +55,6 @@ public: sal_uInt32 nId, bool bThemeNameFromResource ); ~GalleryThemeEntry(); - const std::unique_ptr<GalleryFileStorageEntry>& getGalleryStorageEngineEntry() const { return mpGalleryStorageEngineEntry; } - GalleryStorageLocations& getGalleryStorageLocations() const; GalleryTheme* createGalleryTheme(Gallery* pGallery); diff --git a/include/vcl/alpha.hxx b/include/vcl/alpha.hxx index d159ef657c2a..d10d4dcc7f31 100644 --- a/include/vcl/alpha.hxx +++ b/include/vcl/alpha.hxx @@ -69,7 +69,6 @@ private: friend bool VCL_DLLPUBLIC ReadDIBBitmapEx(BitmapEx& rTarget, SvStream& rIStm, bool bFileHeader, bool bMSOFormat); SAL_DLLPRIVATE const Bitmap& ImplGetBitmap() const; - SAL_DLLPRIVATE void ImplSetBitmap( const Bitmap& rBitmap ); }; diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx index a732e77f3a97..0c794d496342 100644 --- a/include/vcl/bitmap.hxx +++ b/include/vcl/bitmap.hxx @@ -387,18 +387,6 @@ public: */ vcl::Region CreateRegion( const Color& rColor, const tools::Rectangle& rRect ) const; - /** Replace all pixel where the given mask is on with the specified color - - @param rMask - Mask specifying which pixel should be replaced - - @param rReplaceColor - Color to be placed in all changed pixel - - @return true, if the operation was completed successfully. - */ - bool Replace( const Bitmap& rMask, const Color& rReplaceColor ); - /** Merge bitmap with given background color according to specified alpha mask @param rAlpha diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index c96335f1076f..d93e96f6f7d0 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -1314,14 +1314,6 @@ public: static css::uno::Reference< css::ui::dialogs::XFolderPicker2 > createFolderPicker( const css::uno::Reference< css::uno::XComponentContext >& rServiceManager ); - /** Cancel all open dialogs - */ - static void EndAllDialogs(); - - /** Cancel all open popups - */ - static void EndAllPopups(); - /** Returns true, if the VCL plugin runs on the system event loop. * * AKA the VCL plugin can't handle nested event loops, like WASM or mobile. |