summaryrefslogtreecommitdiffstats
path: root/include/vcl/filter/pdfdocument.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/filter/pdfdocument.hxx')
-rw-r--r--include/vcl/filter/pdfdocument.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vcl/filter/pdfdocument.hxx b/include/vcl/filter/pdfdocument.hxx
index 7735a52591bd..c245c815617b 100644
--- a/include/vcl/filter/pdfdocument.hxx
+++ b/include/vcl/filter/pdfdocument.hxx
@@ -196,15 +196,13 @@ class VCL_DLLPUBLIC PDFNameElement : public PDFElement
OString m_aValue;
/// Offset after the '/' token.
sal_uInt64 m_nLocation = 0;
- /// Length till the next token start.
- sal_uInt64 const m_nLength = 0;
public:
PDFNameElement();
bool Read(SvStream& rStream) override;
const OString& GetValue() const;
sal_uInt64 GetLocation() const;
- sal_uInt64 GetLength() const;
+ static sal_uInt64 GetLength() { return 0; }
};
/// Dictionary object: a set key-value pairs.