Rename MetaMoveResizeFlags items to fit with the theme

Use a proper prefix, even if more wordy, instead of META_IS.
This commit is contained in:
Jasper St. Pierre
2014-12-15 13:28:47 -08:00
parent 5a86286aba
commit c782078e00
5 changed files with 34 additions and 34 deletions

View File

@@ -72,11 +72,11 @@ typedef enum {
typedef enum
{
META_IS_CONFIGURE_REQUEST = 1 << 0,
META_IS_USER_ACTION = 1 << 1,
META_IS_MOVE_ACTION = 1 << 2,
META_IS_RESIZE_ACTION = 1 << 3,
META_IS_WAYLAND_RESIZE = 1 << 4,
META_MOVE_RESIZE_CONFIGURE_REQUEST = 1 << 0,
META_MOVE_RESIZE_USER_ACTION = 1 << 1,
META_MOVE_RESIZE_MOVE_ACTION = 1 << 2,
META_MOVE_RESIZE_RESIZE_ACTION = 1 << 3,
META_MOVE_RESIZE_WAYLAND_RESIZE = 1 << 4,
} MetaMoveResizeFlags;
typedef enum