diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-09-16 08:24:24 +0200 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-09-16 08:24:24 +0200 |
commit | 53fadd15f72ba8726bb42fbe175796e86fe00055 (patch) | |
tree | 1dd3070aad0929f5e477bd9ae8ee301e4ae7205f /tools | |
parent | bbae7d59ed80c52662daa55cd60590c4157026a4 (diff) |
dba34a: ensure the newly introduced WinBits for TreeListBoxes do not overlap with existing win bits also used by this class
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/wintypes.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/inc/tools/wintypes.hxx b/tools/inc/tools/wintypes.hxx index 2e1762ed4757..ae90392c7034 100644 --- a/tools/inc/tools/wintypes.hxx +++ b/tools/inc/tools/wintypes.hxx @@ -274,13 +274,13 @@ typedef sal_Int64 WinBits; #define WB_STDTABCONTROL 0 // For TreeListBox -#define WB_HASBUTTONS ((WinBits)0x00800000) -#define WB_HASLINES ((WinBits)0x01000000) -#define WB_HASLINESATROOT ((WinBits)0x02000000) -#define WB_HASBUTTONSATROOT ((WinBits)0x04000000) -#define WB_NOINITIALSELECTION ((WinBits)0x08000000) -#define WB_HIDESELECTION ((WinBits)0x10000000) -#define WB_FORCE_MAKEVISIBLE ((WinBits)0x20000000) +#define WB_HASBUTTONS ((WinBits)SAL_CONST_INT64(0x0100000000)) +#define WB_HASLINES ((WinBits)SAL_CONST_INT64(0x0200000000)) +#define WB_HASLINESATROOT ((WinBits)SAL_CONST_INT64(0x0400000000)) +#define WB_HASBUTTONSATROOT ((WinBits)SAL_CONST_INT64(0x0800000000)) +#define WB_NOINITIALSELECTION ((WinBits)SAL_CONST_INT64(0x1000000000)) +#define WB_HIDESELECTION ((WinBits)SAL_CONST_INT64(0x2000000000)) +#define WB_FORCE_MAKEVISIBLE ((WinBits)SAL_CONST_INT64(0x4000000000)) // For FileOpen Dialog |