summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-23 11:16:43 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-23 11:16:43 +0000
commitfbc583874c72d036573b6379c6037b800646d0e8 (patch)
tree614b03ff54262baf2c01fbef932d27fefb27207e /writerperfect
parenta81adf62a52cb76865bad953e6320a665b559539 (diff)
INTEGRATION: CWS fs08 (1.2.38); FILE MERGED
2006/12/19 10:09:07 fridrich_strba 1.2.38.1: removing memory leaks and warnings with GNU/Linux gcc 3.4.5
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/filter/TextRunStyle.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerperfect/source/filter/TextRunStyle.hxx b/writerperfect/source/filter/TextRunStyle.hxx
index 4174113812f2..0d155ed25341 100644
--- a/writerperfect/source/filter/TextRunStyle.hxx
+++ b/writerperfect/source/filter/TextRunStyle.hxx
@@ -42,7 +42,7 @@ class ParagraphStyle
public:
ParagraphStyle(WPXPropertyList *propList, const WPXPropertyListVector &tabStops, const WPXString &sName);
virtual ~ParagraphStyle();
- virtual void write(DocumentHandler &xHandler) const;
+ virtual void write(DocumentHandler *pHandler) const;
WPXString getName() const { return msName; }
private:
WPXPropertyList *mpPropList;
@@ -55,7 +55,7 @@ class SpanStyle : public Style
{
public:
SpanStyle(const char *psName, const WPXPropertyList &xPropList);
- virtual void write(DocumentHandler &xHandler) const;
+ virtual void write(DocumentHandler *pHandler) const;
private:
WPXPropertyList mPropList;