From 0f3ac23d732239b50207cfbb8cf810ef41fa9835 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 May 2016 14:49:37 +0200 Subject: Insert explicit "break" when falling through to empty next case ...which itself only contains a "break" (or nothing at all at the end of the "switch"), as otherwise Clang -Wimplicit-fallthrough would warn about these. Change-Id: I25c1cf2ca74dfeba7ca0385ca8f1c1bf30bbf91b --- sw/source/filter/ww8/ww8par.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'sw/source/filter/ww8/ww8par.cxx') diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx index a6346c37a34f..97240285f392 100644 --- a/sw/source/filter/ww8/ww8par.cxx +++ b/sw/source/filter/ww8/ww8par.cxx @@ -786,6 +786,7 @@ SdrObject* SwMSDffManager::ProcessObj(SvStream& rSt, case mso_txflHorzA: bVerticalText = true; nTextRotationAngle = 9000; + break; case mso_txflHorzN: default : break; -- cgit v1.2.3