diff options
author | jenglish <jenglish@flightlab.com> | 2007-10-15 15:03:40 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2007-10-15 15:03:40 (GMT) |
commit | 410da9d556a7306f0b2bea77db33c15a7375c315 (patch) | |
tree | 3b6a11da974ad354ed48318afb741c497b082331 /generic/ttk/ttkTheme.h | |
parent | efc99bc15db0e9e7a9b41476cff1119112348d7b (diff) | |
download | tk-410da9d556a7306f0b2bea77db33c15a7375c315.zip tk-410da9d556a7306f0b2bea77db33c15a7375c315.tar.gz tk-410da9d556a7306f0b2bea77db33c15a7375c315.tar.bz2 |
generic/ttk/ttkTreeview.c: Store pointer to column table entry
instead of column index in columnNames hash table.
This avoids the need for the evil PTR2INT and INT2PTR macros,
and simplifies things a bit.
Diffstat (limited to 'generic/ttk/ttkTheme.h')
-rw-r--r-- | generic/ttk/ttkTheme.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/generic/ttk/ttkTheme.h b/generic/ttk/ttkTheme.h index 1f69a24..1567cd0 100644 --- a/generic/ttk/ttkTheme.h +++ b/generic/ttk/ttkTheme.h @@ -1,4 +1,4 @@ -/* $Id: ttkTheme.h,v 1.9 2007/10/15 07:24:49 das Exp $ +/* $Id: ttkTheme.h,v 1.10 2007/10/15 15:03:41 jenglish Exp $ * Copyright (c) 2003 Joe English. Freely redistributable. * * Declarations for Tk theme engine. @@ -19,28 +19,6 @@ extern "C" { # endif #endif -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif -#if !defined(INT2PTR) && !defined(PTR2INT) -# if defined(HAVE_INTPTR_T) || defined(intptr_t) -# define INT2PTR(p) ((void*)(intptr_t)(p)) -# define PTR2INT(p) ((int)(intptr_t)(p)) -# else -# define INT2PTR(p) ((void*)(p)) -# define PTR2INT(p) ((int)(p)) -# endif -#endif -#if !defined(UINT2PTR) && !defined(PTR2UINT) -# if defined(HAVE_UINTPTR_T) || defined(uintptr_t) -# define UINT2PTR(p) ((void*)(uintptr_t)(p)) -# define PTR2UINT(p) ((unsigned int)(uintptr_t)(p)) -# else -# define UINT2PTR(p) ((void*)(p)) -# define PTR2UINT(p) ((unsigned int)(p)) -# endif -#endif - #define TTKAPI MODULE_SCOPE /* Ttk syncs to the Tk version & patchlevel */ |