diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-02-28 16:57:05 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-01 05:27:15 +0100 |
commit | 575c5e35005f25b46cc55badbd0b5bc4d2b226a1 (patch) | |
tree | d07706c8de725541b61aae446de3a5a187274467 | |
parent | a1b5e1bbed36f0560a103300c405806f50c9f3ee (diff) |
coverity#705210: add missing break
Change-Id: I9833e7d2a912b38525f138f2a65ca91d08dd86b6
-rw-r--r-- | sc/source/filter/xml/xmldpimp.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmldpimp.cxx b/sc/source/filter/xml/xmldpimp.cxx index 8b269afd9348..afe0890b397b 100644 --- a/sc/source/filter/xml/xmldpimp.cxx +++ b/sc/source/filter/xml/xmldpimp.cxx @@ -1648,6 +1648,7 @@ ScXMLDataPilotMemberContext::ScXMLDataPilotMemberContext( ScXMLImport& rImport, { maDisplayName = sValue; } + break; case XML_TOK_DATA_PILOT_MEMBER_ATTR_DISPLAY : { bDisplay = IsXMLToken(sValue, XML_TRUE); |