From 20fb9ddf29c84e9684f79bc55cc38fe5b665fae9 Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Fri, 11 Sep 2009 16:41:31 +0000 Subject: [PATCH] Fixed constants of the new wxPG_EX styles git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/propgrid/propgrid.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/propgrid/propgrid.h b/include/wx/propgrid/propgrid.h index 0bcd775d78..75786e85ba 100644 --- a/include/wx/propgrid/propgrid.h +++ b/include/wx/propgrid/propgrid.h @@ -280,11 +280,11 @@ wxPG_EX_ENABLE_TLP_TRACKING = 0x04000000, /** Don't show divider above toolbar, on Windows. */ -wxPG_EX_NO_TOOLBAR_DIVIDER = 0x04000000, +wxPG_EX_NO_TOOLBAR_DIVIDER = 0x08000000, /** Show a separator below the toolbar. */ -wxPG_EX_TOOLBAR_SEPARATOR = 0x08000000 +wxPG_EX_TOOLBAR_SEPARATOR = 0x10000000 };