Tk Source Code

Check-in [cb780075]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix conflicting types in tkMacOSXButton.c
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: cb7800751e64decb80fa2a3a528608d852cca482
User & Date: kevin_walzer 2015-01-27 01:32:28
Context
2015-01-30
15:33
Scrolling now working at an acceptable level with HITheme API; Unix scroll bindings driving scrolling in Tk window and Mac scrollbar just has to re-draw itself check-in: 18222e4c user: kevin_walzer tags: core-8-5-branch
2015-01-27
13:06
merge-mark check-in: 454d244c user: jan.nijtmans tags: trunk
01:32
Fix conflicting types in tkMacOSXButton.c check-in: cb780075 user: kevin_walzer tags: core-8-5-branch
2015-01-24
16:39
Commiting HITheme implementation obuttons; deferring scrolling for now because no adequate solution, even using themed scrolling via ttk, exists check-in: 9aae2077 user: kevin_walzer tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to macosx/tkMacOSXButton.c.

97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
static void PulseDefaultButtonProc(ClientData clientData);


/*
 * The class procedure table for the button widgets.
 */

const Tk_ClassProcs tkpButtonProcs = {
    sizeof(Tk_ClassProcs),	/* size */
    TkButtonWorldChanged,	/* worldChangedProc */
};

static int bCount;

/*







|







97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
static void PulseDefaultButtonProc(ClientData clientData);


/*
 * The class procedure table for the button widgets.
 */

Tk_ClassProcs tkpButtonProcs = {
    sizeof(Tk_ClassProcs),	/* size */
    TkButtonWorldChanged,	/* worldChangedProc */
};

static int bCount;

/*