diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2009-10-08 07:29:41 (GMT) |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2009-10-08 07:29:41 (GMT) |
commit | 0f290238385f3e272e2b8afcb89a7b64764d72be (patch) | |
tree | 0d55c3be1f6d1523b7c0b0c67f49f006486e5949 | |
parent | c15b370c9db16fdbfd9e7bec89ee9bf8c1110827 (diff) | |
download | Qt-0f290238385f3e272e2b8afcb89a7b64764d72be.zip Qt-0f290238385f3e272e2b8afcb89a7b64764d72be.tar.gz Qt-0f290238385f3e272e2b8afcb89a7b64764d72be.tar.bz2 |
Fix Qt Designer startup warnings about Qt::DropAction properties
Add Q_ENUMS/Q_FLAGS accordingly.
Reviewed-by: Olivier Goffart <ogoffart@trolltech.com>
-rw-r--r-- | src/corelib/global/qnamespace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/global/qnamespace.h b/src/corelib/global/qnamespace.h index 9d76dcc..4234a7e 100644 --- a/src/corelib/global/qnamespace.h +++ b/src/corelib/global/qnamespace.h @@ -71,8 +71,8 @@ Qt { Q_ENUMS(ArrowType ToolButtonStyle PenStyle PenCapStyle PenJoinStyle BrushStyle) Q_ENUMS(FillRule MaskMode BGMode ClipOperation SizeMode) Q_ENUMS(BackgroundMode) // Qt3 - Q_ENUMS(Axis Corner LayoutDirection SizeHint Orientation) - Q_FLAGS(Alignment Orientations) + Q_ENUMS(Axis Corner LayoutDirection SizeHint Orientation DropAction) + Q_FLAGS(Alignment Orientations DropActions) Q_FLAGS(DockWidgetAreas ToolBarAreas) Q_ENUMS(DockWidgetArea ToolBarArea) Q_ENUMS(TextFormat) |