summaryrefslogtreecommitdiff
path: root/include/oox/dump/dffdumper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/dump/dffdumper.hxx')
-rw-r--r--include/oox/dump/dffdumper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/oox/dump/dffdumper.hxx b/include/oox/dump/dffdumper.hxx
index d041dcc0be66..21edb23fea70 100644
--- a/include/oox/dump/dffdumper.hxx
+++ b/include/oox/dump/dffdumper.hxx
@@ -32,12 +32,12 @@ namespace dump {
class DffStreamObject : public SequenceRecordObjectBase
{
public:
- inline sal_uInt16 getVer() const { return mnInstVer & 0x000F; }
- inline sal_uInt16 getInst() const { return (mnInstVer & 0xFFF0) >> 4; }
- inline bool isContainer() const { return getVer() == 15; }
+ sal_uInt16 getVer() const { return mnInstVer & 0x000F; }
+ sal_uInt16 getInst() const { return (mnInstVer & 0xFFF0) >> 4; }
+ bool isContainer() const { return getVer() == 15; }
protected:
- inline explicit DffStreamObject() {}
+ DffStreamObject() {}
using SequenceRecordObjectBase::construct;