summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/bento.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-14 16:31:33 +0200
committerNoel Grandin <noel@peralex.com>2016-01-15 09:36:41 +0200
commit52e69bfbba7220fe4181098102876f0e83ffbee1 (patch)
tree25965e6854cd5b49c0ead66a508fe1a60090b43a /lotuswordpro/source/filter/bento.hxx
parent602a64939da2df486099eba967aa9148ced1d8d4 (diff)
loplugin:unusedmethods unused return value in lotuswordpro
Change-Id: Ibed85be78e05dc0e6474d688ef0e0dea401758ac
Diffstat (limited to 'lotuswordpro/source/filter/bento.hxx')
-rw-r--r--lotuswordpro/source/filter/bento.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/bento.hxx b/lotuswordpro/source/filter/bento.hxx
index 75c94fe59cc0..2094a7f50697 100644
--- a/lotuswordpro/source/filter/bento.hxx
+++ b/lotuswordpro/source/filter/bento.hxx
@@ -202,7 +202,7 @@ class LtcBenContainer
{
public:
BenError Open();
- BenError RegisterPropertyName(const char * sPropertyName,
+ void RegisterPropertyName(const char * sPropertyName,
pCBenPropertyName * ppPropertyName);
// Pass NULL to begin iteration. Done when returns NULL.
// Objects are returned in order of increasing ID
@@ -226,7 +226,7 @@ public: // Internal methods
LtcUtBenValueStream * FindNextValueStreamWithPropertyName(const char * sPropertyName, LtcUtBenValueStream * pCurrentValueStream);
LtcUtBenValueStream * FindValueStreamWithPropertyName(const char * sPropertyName);
- BenError CreateGraphicStream(SvStream * &pStream, const char *pObjectName);
+ void CreateGraphicStream(SvStream * &pStream, const char *pObjectName);
BenError GetSize(sal_uLong * pLength);
private: // Data
@@ -258,7 +258,7 @@ class CBenValue : public CBenIDListElmt
{
public:
unsigned long GetValueSize();
- BenError ReadValueData(void * pBuffer,
+ void ReadValueData(void * pBuffer,
unsigned long Offset, unsigned long MaxSize, unsigned long * pAmtRead);
pCBenProperty BEN_EXPORT GetProperty() { return cpProperty; }