summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-19 10:59:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-19 11:04:17 +0200
commit6776d52be6dfe3b8725fadb77b87e20a7cc639d0 (patch)
treefe165d8cc900409487e0a539c75fe3155c85a74e /lotuswordpro
parent8d057b3ca924cca0aafcaabf250189cf6aa41cfd (diff)
Remove unnecessary variable
Change-Id: Ibec141be604f15d1c6358d3365a7a3e60c135f1f
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpsilverbullet.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx
index 3eaae4678f41..e3608a80cfb4 100644
--- a/lotuswordpro/source/filter/lwpsilverbullet.cxx
+++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx
@@ -264,7 +264,6 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber)
OUString strNumChar("1");
sal_uInt16 nStyleID = pParaNumber->GetStyleID();
- UChar32 uC = 0x0000;
switch (nStyleID)
{
@@ -286,8 +285,7 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber)
strNumChar = "i";
break;
case NUMCHAR_other:
- uC = static_cast<UChar32>(pParaNumber->GetNumberChar());
- strNumChar = OUString(uC);
+ strNumChar = OUString(pParaNumber->GetNumberChar());
break;
case NUMCHAR_Chinese1:
{