From 6fd370952d63bb72fc7ca4732fcca03cdc49a41e Mon Sep 17 00:00:00 2001 From: Gabriel Anderson Date: Mon, 13 Aug 2007 21:51:23 +0000 Subject: [PATCH] Fixed krazy issue #8 (Non-const d-pointer) svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=699687 --- widgets/rectangle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/rectangle.h b/widgets/rectangle.h index ca5f1cba8..e86ddf849 100644 --- a/widgets/rectangle.h +++ b/widgets/rectangle.h @@ -35,7 +35,7 @@ class PLASMA_EXPORT Rectangle : public Plasma::Widget private: class Private; - Private const *d; + Private * const d; }; }