remove ContextConstraint

This commit is contained in:
Aaron Seigo 2011-05-20 09:36:34 +02:00
parent 0043de0ae9
commit 3ed8a6fad2

View File

@ -55,12 +55,10 @@ enum Constraint {
ImmutableConstraint = 16,
/** application startup has completed */
StartupCompletedConstraint = 32,
/** the desktop context has changed */
ContextConstraint = 64,
/** the position of the popup needs to be recalculated*/
PopupConstraint = 128,
AllConstraints = FormFactorConstraint | LocationConstraint | ScreenConstraint |
SizeConstraint | ImmutableConstraint | ContextConstraint | PopupConstraint
SizeConstraint | ImmutableConstraint | PopupConstraint
};
Q_DECLARE_FLAGS(Constraints, Constraint)