From 78293fea452d91fcbc59847812739fdc2daba52d Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Mon, 19 Nov 2007 07:40:25 +0000 Subject: [PATCH] always return something, well, even though we always would have. g++ isn't *that* smart ;) svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=738560 --- widgets/layout.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widgets/layout.cpp b/widgets/layout.cpp index 096258a76..8be39d958 100644 --- a/widgets/layout.cpp +++ b/widgets/layout.cpp @@ -133,6 +133,8 @@ qreal Layout::margin(MarginEdge edge) const return d->bottomMargin; break; } + + return 0; } void Layout::setMargin(MarginEdge edge, qreal m)