remove a break; after a return

there is no need for a break; after a return (dead code)

REVIEW: 103323
This commit is contained in:
Jaime Torres 2011-12-04 12:24:35 +01:00
parent 97e4bd53d3
commit ab8e956d57

View File

@ -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;