sc/source/ui/dbgui/PivotLayoutDialog.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 100cd38d0530ebaec19338c0c612a73e15fb1b4f Author: Stephan Bergmann <[email protected]> Date: Tue May 10 11:14:03 2016 +0200 Missing break in switch Forgotten in 4f1f8b8e993b98095bf50c9e432fb0400d318b1f "pivot: new pivot table layout dialog" (as clarified on IRC). Change-Id: If35e1a9616e596b16bcb007f6ea172b634c11b85 diff --git a/sc/source/ui/dbgui/PivotLayoutDialog.cxx b/sc/source/ui/dbgui/PivotLayoutDialog.cxx index 681758c..2d538d9 100644 --- a/sc/source/ui/dbgui/PivotLayoutDialog.cxx +++ b/sc/source/ui/dbgui/PivotLayoutDialog.cxx @@ -405,6 +405,7 @@ void ScPivotLayoutDialog::ItemInserted(ScItemValue* pItemValue, ScPivotLayoutTre mpListBoxColumn->RemoveEntryForItem(pItemValue); mpListBoxPage->RemoveEntryForItem(pItemValue); } + break; case ScPivotLayoutTreeList::LABEL_LIST: { mpListBoxRow->RemoveEntryForItem(pItemValue); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
