From ab8e956d57343bda532dfa272f01bd7e5dbc5ad5 Mon Sep 17 00:00:00 2001 From: Jaime Torres Date: Sun, 4 Dec 2011 12:24:35 +0100 Subject: [PATCH] remove a break; after a return there is no need for a break; after a return (dead code) REVIEW: 103323 --- popupapplet.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/popupapplet.cpp b/popupapplet.cpp index c36350323..07ea3f108 100644 --- a/popupapplet.cpp +++ b/popupapplet.cpp @@ -446,7 +446,6 @@ QSizeF PopupApplet::sizeHint(Qt::SizeHint which, const QSizeF & constraint) cons case Horizontal: { const int size = IconSize(KIconLoader::Panel); return QSizeF(size, size); - break; } default: break;