From 12af5bc729d9402fdcabb21c5a28fe7ad7969bbd Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Wed, 5 Dec 2007 20:23:25 +0000 Subject: [PATCH] add a constraint for immutability changes svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=745242 --- plasma.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plasma.h b/plasma.h index f79766f1c..302656984 100644 --- a/plasma.h +++ b/plasma.h @@ -41,7 +41,8 @@ enum Constraint { NoConstraint = 0, LocationConstraint = 2 /** The Location of an object */, ScreenConstraint = 4 /** Which screen an object is on */, SizeConstraint = 8 /** the size of the applet was changed */, - AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint | SizeConstraint + ImmutableConstraint = 16 /** the immutability (locked) nature of the applet changed */, + AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint | SizeConstraint | ImmutableConstraint }; Q_DECLARE_FLAGS(Constraints, Constraint)