summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-30 10:47:56 +0200
committerNoel Grandin <noel@peralex.com>2015-05-05 09:30:39 +0200
commitf304a7a14a4af4d3f46eab18d5494194028e61ef (patch)
tree7f51b8efe4427d01fc688925c44e0a05e3c64c7b /oox/inc
parentb2b85c2b3920fdd92b8d3bf32af1cac5679e116e (diff)
loplugin:staticmethods
Change-Id: I384a5e60f4b7b2f479c89ef97630519059ab720f
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/drawingml/chart/objectformatter.hxx2
-rw-r--r--oox/inc/drawingml/shape3dproperties.hxx14
2 files changed, 8 insertions, 8 deletions
diff --git a/oox/inc/drawingml/chart/objectformatter.hxx b/oox/inc/drawingml/chart/objectformatter.hxx
index 731b1501fcb8..1e8d7807095c 100644
--- a/oox/inc/drawingml/chart/objectformatter.hxx
+++ b/oox/inc/drawingml/chart/objectformatter.hxx
@@ -122,7 +122,7 @@ public:
ObjectType eObjType );
/** Sets text rotation properties to the passed property set. */
- void convertTextRotation(
+ static void convertTextRotation(
PropertySet& rPropSet,
const ModelRef< TextBody >& rxTextProp,
bool bSupportsStacked );
diff --git a/oox/inc/drawingml/shape3dproperties.hxx b/oox/inc/drawingml/shape3dproperties.hxx
index 5c3eaa00ead2..d3e491b29eba 100644
--- a/oox/inc/drawingml/shape3dproperties.hxx
+++ b/oox/inc/drawingml/shape3dproperties.hxx
@@ -73,18 +73,18 @@ struct Shape3DProperties
/** Overwrites all members that are explicitly set in rSourceProps. */
void assignUsed( const Shape3DProperties& rSourceProps );
- OUString getCameraPrstName( sal_Int32 nElement );
- OUString getLightRigName( sal_Int32 nElement );
- OUString getLightRigDirName( sal_Int32 nElement );
- OUString getBevelPresetTypeString( sal_Int32 nType );
- OUString getPresetMaterialTypeString( sal_Int32 nType );
+ static OUString getCameraPrstName( sal_Int32 nElement );
+ static OUString getLightRigName( sal_Int32 nElement );
+ static OUString getLightRigDirName( sal_Int32 nElement );
+ static OUString getBevelPresetTypeString( sal_Int32 nType );
+ static OUString getPresetMaterialTypeString( sal_Int32 nType );
css::uno::Sequence< css::beans::PropertyValue > getCameraAttributes();
css::uno::Sequence< css::beans::PropertyValue > getLightRigAttributes();
css::uno::Sequence< css::beans::PropertyValue > getShape3DAttributes(
const GraphicHelper& rGraphicHelper, sal_Int32 rPhClr = API_RGB_TRANSPARENT );
- css::uno::Sequence< css::beans::PropertyValue > getBevelAttributes( BevelProperties rProps );
- css::uno::Sequence< css::beans::PropertyValue > getColorAttributes(
+ static css::uno::Sequence< css::beans::PropertyValue > getBevelAttributes( BevelProperties rProps );
+ static css::uno::Sequence< css::beans::PropertyValue > getColorAttributes(
const Color& rColor, const GraphicHelper& rGraphicHelper, sal_Int32 rPhClr );
};