summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/CellMarginHandler.hxx
diff options
context:
space:
mode:
authorHenning Brinkmann <hbrinkm@openoffice.org>2010-08-11 15:30:41 +0200
committerHenning Brinkmann <hbrinkm@openoffice.org>2010-08-11 15:30:41 +0200
commita3af0ceb2984cca95fa8352d820a6531d7272e00 (patch)
tree436322158d8b261e28ffd8dc6a2545ab6075feeb /writerfilter/source/dmapper/CellMarginHandler.hxx
parent76af059b7a287758b07916a946a89f90d4024168 (diff)
writerfilter09: CellMarginHandler: use logged resources
Diffstat (limited to 'writerfilter/source/dmapper/CellMarginHandler.hxx')
-rw-r--r--writerfilter/source/dmapper/CellMarginHandler.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/writerfilter/source/dmapper/CellMarginHandler.hxx b/writerfilter/source/dmapper/CellMarginHandler.hxx
index 5f01df47a347..3d2512675683 100644
--- a/writerfilter/source/dmapper/CellMarginHandler.hxx
+++ b/writerfilter/source/dmapper/CellMarginHandler.hxx
@@ -30,18 +30,22 @@
#ifndef INCLUDED_WRITERFILTERDLLAPI_H
#include <WriterFilterDllApi.hxx>
#endif
-#include <resourcemodel/WW8ResourceModel.hxx>
+#include <resourcemodel/LoggedResources.hxx>
#include <boost/shared_ptr.hpp>
namespace writerfilter {
namespace dmapper
{
class TablePropertyMap;
-class WRITERFILTER_DLLPRIVATE CellMarginHandler : public Properties
+class WRITERFILTER_DLLPRIVATE CellMarginHandler : public LoggedProperties
{
private:
sal_Int32 m_nValue;
+ // Properties
+ virtual void lcl_attribute(Id Name, Value & val);
+ virtual void lcl_sprm(Sprm & sprm);
+
public:
sal_Int32 m_nLeftMargin;
bool m_bLeftMarginValid;
@@ -56,10 +60,6 @@ public:
CellMarginHandler( );
virtual ~CellMarginHandler();
- // Properties
- virtual void attribute(Id Name, Value & val);
- virtual void sprm(Sprm & sprm);
-
::boost::shared_ptr<TablePropertyMap> getProperties();
};