summaryrefslogtreecommitdiff
path: root/sc/source/filter
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 /sc/source/filter
parent211990642306d08a388682b4ac84a5776b3afbd7 (diff)
Bin commented-out unreachable 'break' statements
Change-Id: If0f47a78bbffec5c2ebd33c552d0d8a300b48eb1
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/excel/xeview.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/excel/xeview.cxx b/sc/source/filter/excel/xeview.cxx
index 5e5ded5cb3f7..faa3bb07cbea 100644
--- a/sc/source/filter/excel/xeview.cxx
+++ b/sc/source/filter/excel/xeview.cxx
@@ -169,10 +169,10 @@ static const char* lcl_GetActivePane( sal_uInt8 nActivePane )
{
switch( nActivePane )
{
- case EXC_PANE_TOPLEFT: return "topLeft"; //break;
- case EXC_PANE_TOPRIGHT: return "topRight"; //break;
- case EXC_PANE_BOTTOMLEFT: return "bottomLeft"; //break;
- case EXC_PANE_BOTTOMRIGHT: return "bottomRight"; //break;
+ case EXC_PANE_TOPLEFT: return "topLeft";
+ case EXC_PANE_TOPRIGHT: return "topRight";
+ case EXC_PANE_BOTTOMLEFT: return "bottomLeft";
+ case EXC_PANE_BOTTOMRIGHT: return "bottomRight";
}
return "**error: lcl_GetActivePane";
}