diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-20 08:44:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-20 10:07:10 +0200 |
commit | 1c5cae479bebd2d325182adc2c9821fd948fd1bd (patch) | |
tree | 639e50ced55620dc2d1e9eb5a7ed8a6298c4de09 /vcl | |
parent | da24355234ec12f2f4c652113dbbb1216ba5492c (diff) |
loplugin:unusedmethods
Change-Id: Ib7a9b1b0802ca751da258065e89b412b090bb672
Reviewed-on: https://gerrit.libreoffice.org/36718
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/image/Image.cxx | 1 | ||||
-rw-r--r-- | vcl/source/image/ImageTree.cxx | 5 | ||||
-rw-r--r-- | vcl/source/window/menu.cxx | 5 |
3 files changed, 0 insertions, 11 deletions
diff --git a/vcl/source/image/Image.cxx b/vcl/source/image/Image.cxx index fc4e9fa80401..2299101f1a58 100644 --- a/vcl/source/image/Image.cxx +++ b/vcl/source/image/Image.cxx @@ -20,7 +20,6 @@ #include <osl/file.hxx> #include <tools/debug.hxx> #include <tools/stream.hxx> -#include <tools/rc.hxx> #include <tools/resmgr.hxx> #include <vcl/settings.hxx> #include <vcl/outdev.hxx> diff --git a/vcl/source/image/ImageTree.cxx b/vcl/source/image/ImageTree.cxx index 109a955922f3..a3b708affa4f 100644 --- a/vcl/source/image/ImageTree.cxx +++ b/vcl/source/image/ImageTree.cxx @@ -37,11 +37,6 @@ bool ImageTree::loadImage(OUString const & rName, OUString const & rStyle, return mpImplImageTree->loadImage(rName, rStyle, rBitmap, bLocalized, eFlags); } -bool ImageTree::loadDefaultImage(OUString const & rStyle, BitmapEx& rBitmap) -{ - return mpImplImageTree->loadDefaultImage(rStyle, rBitmap, ImageLoadFlags::NONE); -} - css::uno::Reference<css::container::XNameAccess> ImageTree::getNameAccess() { return mpImplImageTree->getNameAccess(); diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx index 5991f123530d..02606828baa8 100644 --- a/vcl/source/window/menu.cxx +++ b/vcl/source/window/menu.cxx @@ -559,11 +559,6 @@ void ImplCopyItem( Menu* pThis, const Menu& rMenu, sal_uInt16 nPos, sal_uInt16 n } } -void Menu::CopyItem( const Menu& rMenu, sal_uInt16 nPos ) -{ - ImplCopyItem( this, rMenu, nPos, MENU_APPEND ); -} - void Menu::Clear() { for ( sal_uInt16 i = GetItemCount(); i; i-- ) |