diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-26 19:24:15 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-26 19:24:19 +0200 |
commit | 700b6c1cbf4fee4044aa2b7179d3f1886ae928c6 (patch) | |
tree | 33b1bfe0afc816ed29f66ff050d5fc0dda1e7323 /lotuswordpro | |
parent | 4ac0eff680a9fbf81dfd9e8a5772dee93bd0fb1a (diff) |
Fix warning: unused variable 'sFormat' [loplugin]
Presumably the call to m_pObjStrm->QuickReadStringPtr() is still necessary
because of its side-effects (to update the stream pointer).
Change-Id: I69f24de4e956d5fefb4fc5382c0cc7e0173a5a0f
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpoleobject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpoleobject.cxx b/lotuswordpro/source/filter/lwpoleobject.cxx index c818118a4cb0..842e1992b295 100644 --- a/lotuswordpro/source/filter/lwpoleobject.cxx +++ b/lotuswordpro/source/filter/lwpoleobject.cxx @@ -220,7 +220,7 @@ void LwpOleObject::Read() { m_pObjStrm->QuickReaduInt16(); - OUString sFormat = m_pObjStrm->QuickReadStringPtr(); + m_pObjStrm->QuickReadStringPtr(); if (LwpFileHeader::m_nFileRevision < 0x000B) { |