diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-09 12:24:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-09 13:50:36 +0200 |
commit | 65cae2810d209348f92789dfc43a6abbfcaf38f9 (patch) | |
tree | 13a07b1641db400484c420e73803f3d5429e173c /vcl | |
parent | 948c2d7b9fb30c5da0b0c10685828f401cb5bd03 (diff) |
clang-analyzer-deadcode.DeadStores
Change-Id: I4924a3cecb1e12874659eeccde51126fab4d4e45
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/sgvtext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/sgvtext.cxx b/vcl/source/filter/sgvtext.cxx index 138a16e21b8e..e732ecade266 100644 --- a/vcl/source/filter/sgvtext.cxx +++ b/vcl/source/filter/sgvtext.cxx @@ -788,7 +788,7 @@ void FormatLine(UCHAR* TBuf, sal_uInt16& Index, ObjTextType& Atr0, ObjTextType& nChars++; Line[nChars]=R->ChrXP; // to assure AbsatzEnde is read Line[nChars+1]=R->ChrXP; // as the width of CR or #0 is very small if (TBuf[R->Index-1]!=AbsatzEnd && TBuf[R->Index-1]!=TextEnd) { - c=GetTextChar(TBuf,R->Index,Atr0,R->Attrib,NoTrenn,false); // small correction needed, if 1st word read + GetTextChar(TBuf,R->Index,Atr0,R->Attrib,NoTrenn,false); // small correction needed, if 1st word read } } |