fixed a problem in the aui toolbar flags

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@55434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Benjamin Williams
2008-09-03 14:43:05 +00:00
parent 93f6cd7984
commit d9f2f5d145
2 changed files with 4 additions and 3 deletions

View File

@@ -28,7 +28,8 @@ enum wxAuiToolBarStyle
wxAUI_TB_GRIPPER = 1 << 3,
wxAUI_TB_OVERFLOW = 1 << 4,
wxAUI_TB_VERTICAL = 1 << 5,
wxAUI_TB_HORZ_TEXT = ((1 << 6) | wxAUI_TB_TEXT),
wxAUI_TB_HORZ_LAYOUT = 1 << 6,
wxAUI_TB_HORZ_TEXT = (wxAUI_TB_HORZ_LAYOUT | wxAUI_TB_TEXT),
wxAUI_TB_DEFAULT_STYLE = 0
};