summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-24 14:12:36 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-24 14:13:13 +0200
commit766f7388dd3d33cfc9efcbec86bcf15a51be8c73 (patch)
treedb213dccee756c8b345d1b2c58713e4bc34ddad9 /sw
parent211990642306d08a388682b4ac84a5776b3afbd7 (diff)
Bin commented-out unreachable 'break' statements
Change-Id: If0f47a78bbffec5c2ebd33c552d0d8a300b48eb1
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/html/swhtml.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index b47a601baf6f..08a04afc24bb 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -2724,7 +2724,7 @@ void SwHTMLParser::_SetAttr( bool bChkEnd, bool bBeforeTable,
// ungueltige Attribute koennen gloescht werden
delete pAttr;
pAttr = pPrev;
- continue; //break;
+ continue;
}
pCNd = pAttr->nSttPara.GetNode().GetCntntNode();
@@ -2740,7 +2740,7 @@ void SwHTMLParser::_SetAttr( bool bChkEnd, bool bBeforeTable,
// es sei denn, es ist ein Text-Attribut.
delete pAttr;
pAttr = pPrev;
- continue; //break;
+ continue;
}
pCNd = pDoc->GetNodes().GoNext( &(pAttr->nSttPara) );
if( pCNd )
@@ -2750,7 +2750,7 @@ void SwHTMLParser::_SetAttr( bool bChkEnd, bool bBeforeTable,
OSL_ENSURE( false, "SetAttr: GoNext() failed!" );
delete pAttr;
pAttr = pPrev;
- continue; // break;
+ continue;
}
}
pAttrPam->GetPoint()->nNode = pAttr->nSttPara;
@@ -2777,7 +2777,7 @@ void SwHTMLParser::_SetAttr( bool bChkEnd, bool bBeforeTable,
pAttrPam->DeleteMark();
delete pAttr;
pAttr = pPrev;
- continue; // break;
+ continue;
}
}