diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-04 12:21:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-05 08:41:46 +0200 |
commit | 44bc7fc5609a4930e7236b43cf445920a2a3bc77 (patch) | |
tree | d4656ca85645d82b1eadd9fe7e08137e078c66c6 /include | |
parent | 57f1934bdaa747f6e671419aa040e140d235f937 (diff) |
loplugin:checkunusedparams in svx(part2)
Change-Id: I608d504b64336e1cb2fc32a46908bef0cffed3bd
Reviewed-on: https://gerrit.libreoffice.org/37229
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/charthelper.hxx | 3 | ||||
-rw-r--r-- | include/svx/galtheme.hxx | 4 | ||||
-rw-r--r-- | include/svx/sdr/properties/properties.hxx | 4 | ||||
-rw-r--r-- | include/svx/svdcrtv.hxx | 2 |
4 files changed, 4 insertions, 9 deletions
diff --git a/include/svx/charthelper.hxx b/include/svx/charthelper.hxx index f7c70bd192cf..acc1349c93c5 100644 --- a/include/svx/charthelper.hxx +++ b/include/svx/charthelper.hxx @@ -57,8 +57,7 @@ public: // since this would not be saved/loaded, thus the compatibility will be better when setting it at // newly created charts using this method static void AdaptDefaultsForChart( - const css::uno::Reference < css::embed::XEmbeddedObject > & xEmbObj, - bool bNoFillStyle = true); + const css::uno::Reference < css::embed::XEmbeddedObject > & xEmbObj); }; #endif // INCLUDED_SVX_CHARTHELPER_HXX diff --git a/include/svx/galtheme.hxx b/include/svx/galtheme.hxx index 003c013fe365..2b6b15ce9236 100644 --- a/include/svx/galtheme.hxx +++ b/include/svx/galtheme.hxx @@ -181,12 +181,12 @@ public: return ImplGetGalleryObject( nPos )->aURL; } - SAL_DLLPRIVATE bool GetThumb( sal_uIntPtr nPos, BitmapEx& rBmp, bool bProgress = false ); + SAL_DLLPRIVATE bool GetThumb( sal_uIntPtr nPos, BitmapEx& rBmp ); bool GetGraphic( sal_uIntPtr nPos, Graphic& rGraphic, bool bProgress = false ); bool InsertGraphic( const Graphic& rGraphic, sal_uIntPtr nInsertPos ); - bool GetModel( sal_uIntPtr nPos, SdrModel& rModel, bool bProgress = false ); + bool GetModel( sal_uIntPtr nPos, SdrModel& rModel ); bool InsertModel( const FmFormModel& rModel, sal_uIntPtr nInsertPos ); SAL_DLLPRIVATE bool GetModelStream( sal_uIntPtr nPos, tools::SvRef<SotStorageStream>& rModelStreamRef ); diff --git a/include/svx/sdr/properties/properties.hxx b/include/svx/sdr/properties/properties.hxx index e1b9a5f269cb..3a49400f5d76 100644 --- a/include/svx/sdr/properties/properties.hxx +++ b/include/svx/sdr/properties/properties.hxx @@ -79,10 +79,6 @@ namespace sdr // basic constructor, used from SdrObject. explicit BaseProperties(SdrObject& rObj); - // constructor for copying, but using new object. Used from the Clone() - // method. - BaseProperties(const BaseProperties& rProps, SdrObject& rObj); - // destructor virtual ~BaseProperties(); diff --git a/include/svx/svdcrtv.hxx b/include/svx/svdcrtv.hxx index 928006172ee2..419193dcadca 100644 --- a/include/svx/svdcrtv.hxx +++ b/include/svx/svdcrtv.hxx @@ -143,7 +143,7 @@ public: // Default = sal_False; bool IsUseIncompatiblePathCreateInterface() const { return bUseIncompatiblePathCreateInterface; } void SetUseIncompatiblePathCreateInterface(bool bOn) { bUseIncompatiblePathCreateInterface = bOn; } - void SetConnectMarker(const SdrObjConnection& rCon, const SdrPageView& rPV); + void SetConnectMarker(const SdrObjConnection& rCon); void HideConnectMarker(); // Attributes of the object that is in the process of being created |