diff options
author | Muthu Subramanian <sumuthu@suse.com> | 2012-05-16 19:19:29 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2012-05-16 19:20:45 +0530 |
commit | d83463931ef511ba1b43984072626345cf765b8a (patch) | |
tree | ebeeab05cd4f0da4e05834fce21cb97d559c9c9f /oox/inc | |
parent | 30590f00e44cbe7b2a5253f544302ee5b0c3c08d (diff) |
Revert selected hunks from various 'unused code' commits.
These functions are required for debugging pptx import problems.
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/oox/drawingml/textliststyle.hxx | 4 | ||||
-rw-r--r-- | oox/inc/oox/drawingml/textparagraphproperties.hxx | 4 | ||||
-rw-r--r-- | oox/inc/oox/helper/propertyset.hxx | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/oox/inc/oox/drawingml/textliststyle.hxx b/oox/inc/oox/drawingml/textliststyle.hxx index 29d8f29a48ce..9be1c589c7a1 100644 --- a/oox/inc/oox/drawingml/textliststyle.hxx +++ b/oox/inc/oox/drawingml/textliststyle.hxx @@ -51,6 +51,10 @@ public: inline const TextParagraphPropertiesVector& getAggregationListStyle() const { return maAggregationListStyle; }; inline TextParagraphPropertiesVector& getAggregationListStyle() { return maAggregationListStyle; }; +#ifdef DBG_UTIL + void dump() const; +#endif + protected: TextParagraphPropertiesVector maListStyle; diff --git a/oox/inc/oox/drawingml/textparagraphproperties.hxx b/oox/inc/oox/drawingml/textparagraphproperties.hxx index e037ff2c3726..9e9fe88ef7c4 100644 --- a/oox/inc/oox/drawingml/textparagraphproperties.hxx +++ b/oox/inc/oox/drawingml/textparagraphproperties.hxx @@ -114,6 +114,10 @@ public: size can be zero and the default value is returned. */ float getCharHeightPoints( float fDefault ) const; +#ifdef DBG_UTIL + void dump() const; +#endif + protected: TextCharacterProperties maTextCharacterProperties; diff --git a/oox/inc/oox/helper/propertyset.hxx b/oox/inc/oox/helper/propertyset.hxx index 5e9b31218c3f..56fbe9b9596d 100644 --- a/oox/inc/oox/helper/propertyset.hxx +++ b/oox/inc/oox/helper/propertyset.hxx @@ -124,6 +124,10 @@ public: @param rPropertyMap The property map. */ void setProperties( const PropertyMap& rPropertyMap ); +#ifdef DBG_UTIL + void dump(); +#endif + // ------------------------------------------------------------------------ private: /** Gets the specified property from the property set. |