diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 12:03:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-07 12:07:43 +0200 |
commit | cff185e438f2db564d0309f1c790cd79be908351 (patch) | |
tree | 0deed93a9d1d5fac61c294bdfd4ea2123f6e86fd /sd/inc | |
parent | a360d0b33a66be1ae190196e39c12b0494ba2840 (diff) |
loplugin:staticmethods: sd
Change-Id: I150a2f4011981be28a0a8fc09c29d3f152bd8b78
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/CustomAnimationPreset.hxx | 2 | ||||
-rw-r--r-- | sd/inc/drawdoc.hxx | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sd/inc/CustomAnimationPreset.hxx b/sd/inc/CustomAnimationPreset.hxx index bd3da582d849..10d54f6e8d67 100644 --- a/sd/inc/CustomAnimationPreset.hxx +++ b/sd/inc/CustomAnimationPreset.hxx @@ -117,7 +117,7 @@ private: SAL_DLLPRIVATE void importPresets( const css::uno::Reference< css::lang::XMultiServiceFactory >& xConfigProvider, const OUString& rNodePath, PresetCategoryList& rPresetMap ); - SAL_DLLPRIVATE const OUString& translateName( const OUString& rId, const UStringMap& rNameMap ) const; + SAL_DLLPRIVATE static const OUString& translateName( const OUString& rId, const UStringMap& rNameMap ); private: css::uno::Reference< css::animations::XAnimationNode > mxRootNode; diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index cc88e286562e..fadb16dcc726 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -433,12 +433,12 @@ public: return nPos < maFrameViewList.size() ? maFrameViewList[nPos] : nullptr; } /** deprecated*/ - SAL_DLLPRIVATE SdAnimationInfo* GetAnimationInfo(SdrObject* pObject) const; + SAL_DLLPRIVATE static SdAnimationInfo* GetAnimationInfo(SdrObject* pObject); static SdAnimationInfo* GetShapeUserData(SdrObject& rObject, bool bCreate = false ); - SAL_DLLPRIVATE SdIMapInfo* GetIMapInfo( SdrObject* pObject ) const; - SAL_DLLPRIVATE IMapObject* GetHitIMapObject( SdrObject* pObject, const Point& rWinPoint, const vcl::Window& rCmpWnd ); + SAL_DLLPRIVATE static SdIMapInfo* GetIMapInfo( SdrObject* pObject ); + SAL_DLLPRIVATE static IMapObject* GetHitIMapObject( SdrObject* pObject, const Point& rWinPoint, const vcl::Window& rCmpWnd ); SAL_DLLPRIVATE CharClass* GetCharClass() const { return mpCharClass; } @@ -578,7 +578,7 @@ public: SAL_DLLPRIVATE void UpdatePageRelativeURLs(const OUString& rOldName, const OUString& rNewName); - SAL_DLLPRIVATE void SetCalcFieldValueHdl( ::Outliner* pOutliner); + SAL_DLLPRIVATE static void SetCalcFieldValueHdl( ::Outliner* pOutliner); SAL_DLLPRIVATE sal_uInt16 GetAnnotationAuthorIndex( const OUString& rAuthor ); |