summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-24 16:40:57 +0200
committerNoel Grandin <noel@peralex.com>2015-05-05 09:30:40 +0200
commit86172696f337317320f857016287e4a8850e613c (patch)
treeb211662b097ead6bd59bbc42569d0fc31080eb7f /writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
parent89945a90590e2c9a3bea7a387cf8d9d2f5591728 (diff)
loplugin:staticmethods
Change-Id: I64fdb27a7f83f6417a9cd67ed5d2c44072ec7f2e
Diffstat (limited to 'writerfilter/source/ooxml/OOXMLFastContextHandler.hxx')
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
index 832edb1c9d90..0eb22e8e5399 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
@@ -171,7 +171,7 @@ public:
void endOfParagraph();
void text(const OUString & sText);
void positionOffset(const OUString & sText);
- void ignore();
+ static void ignore();
void alignH(const OUString & sText);
void alignV(const OUString & sText);
void positivePercentage(const OUString& rText);
@@ -404,7 +404,7 @@ public:
virtual std::string getType() const SAL_OVERRIDE { return "TextTableCell"; }
- void startCell();
+ static void startCell();
void endCell();
};
@@ -416,11 +416,11 @@ public:
virtual std::string getType() const SAL_OVERRIDE { return "TextTableRow"; }
- void startRow();
+ static void startRow();
void endRow();
void handleGridBefore( OOXMLValue::Pointer_t val );
private:
- OOXMLProperty::Pointer_t fakeNoBorder( Id id );
+ static OOXMLProperty::Pointer_t fakeNoBorder( Id id );
};
class OOXMLFastContextHandlerTextTable : public OOXMLFastContextHandler