Kaydet (Commit) e052f552 authored tarafından Michael Stahl's avatar Michael Stahl

spurious warning C4701: potentially uninitialized local variable

Change-Id: I37f96df0ca6003bd811f156448e6b4990d2222aa
üst b30d961a
...@@ -1110,7 +1110,7 @@ void SwAutoFormat::DeleteAktPara( bool bStart, bool bEnd ) ...@@ -1110,7 +1110,7 @@ void SwAutoFormat::DeleteAktPara( bool bStart, bool bEnd )
// Loesche Blanks am Ende vom akt. und am Anfang vom naechsten // Loesche Blanks am Ende vom akt. und am Anfang vom naechsten
aDelPam.DeleteMark(); aDelPam.DeleteMark();
aDelPam.GetPoint()->nNode = aNdIdx; aDelPam.GetPoint()->nNode = aNdIdx;
xub_StrLen nPos; xub_StrLen nPos(0);
if( bStart && 0 != ( nPos = GetLeadingBlanks( pAktTxtNd->GetTxt() ))) if( bStart && 0 != ( nPos = GetLeadingBlanks( pAktTxtNd->GetTxt() )))
{ {
aDelPam.GetPoint()->nContent.Assign( pAktTxtNd, 0 ); aDelPam.GetPoint()->nContent.Assign( pAktTxtNd, 0 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment