diff options
Diffstat (limited to 'include/oox/crypto')
-rw-r--r-- | include/oox/crypto/AgileEngine.hxx | 2 | ||||
-rw-r--r-- | include/oox/crypto/Standard2007Engine.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/crypto/AgileEngine.hxx b/include/oox/crypto/AgileEngine.hxx index e2cda6e4f88c..cdd614063161 100644 --- a/include/oox/crypto/AgileEngine.hxx +++ b/include/oox/crypto/AgileEngine.hxx @@ -57,7 +57,7 @@ public: AgileEngine(); virtual ~AgileEngine(); - AgileEncryptionInfo& getInfo(); + AgileEncryptionInfo& getInfo() { return mInfo;} virtual bool writeEncryptionInfo( const OUString& rPassword, diff --git a/include/oox/crypto/Standard2007Engine.hxx b/include/oox/crypto/Standard2007Engine.hxx index 366eabc690cd..2d76bee8942c 100644 --- a/include/oox/crypto/Standard2007Engine.hxx +++ b/include/oox/crypto/Standard2007Engine.hxx @@ -90,7 +90,7 @@ public: Standard2007Engine(); virtual ~Standard2007Engine(); - StandardEncryptionInfo& getInfo(); + StandardEncryptionInfo& getInfo() { return mInfo;} virtual bool generateEncryptionKey(const OUString& rPassword) SAL_OVERRIDE; |