From 1e1b63b9fea2de988452de38f251d71bcdd3f4f5 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Sat, 24 Nov 2007 23:37:18 +0000 Subject: [PATCH] add the Geometry Changed constraint svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=741157 --- plasma.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plasma.h b/plasma.h index 617d85452..f79766f1c 100644 --- a/plasma.h +++ b/plasma.h @@ -40,7 +40,8 @@ enum Constraint { NoConstraint = 0, FormFactorConstraint = 1 /** The FormFactor for an object */, LocationConstraint = 2 /** The Location of an object */, ScreenConstraint = 4 /** Which screen an object is on */, - AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint + SizeConstraint = 8 /** the size of the applet was changed */, + AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint | SizeConstraint }; Q_DECLARE_FLAGS(Constraints, Constraint)