diff options
author | dgp <dgp@noemail.net> | 2005-03-24 15:25:51 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2005-03-24 15:25:51 (GMT) |
commit | 30350e3ee37464d25e664d51f8abc4657683494a (patch) | |
tree | 53276e6f629bfd328997c1a481f82f7b2bbd2a72 /generic/tkEntry.c | |
parent | 5835512c8ae0cfcd429ad979707efb6c9bd8decd (diff) | |
download | tk-30350e3ee37464d25e664d51f8abc4657683494a.zip tk-30350e3ee37464d25e664d51f8abc4657683494a.tar.gz tk-30350e3ee37464d25e664d51f8abc4657683494a.tar.bz2 |
Syntax/Style Guide fixes
FossilOrigin-Name: 6f2f46b2336f61cde1f2cdde1553db57ea5d565d
Diffstat (limited to 'generic/tkEntry.c')
-rw-r--r-- | generic/tkEntry.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c index e347cff..f1c2885 100644 --- a/generic/tkEntry.c +++ b/generic/tkEntry.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkEntry.c,v 1.36 2005/03/24 07:16:13 wolfsuit Exp $ + * RCS: @(#) $Id: tkEntry.c,v 1.37 2005/03/24 15:25:52 dgp Exp $ */ #include "tkInt.h" @@ -1539,7 +1539,10 @@ EntryWorldChanged(instanceData) */ int -TkpDrawEntryBorderAndFocus(Entry *entryPtr, Drawable pixmap, int isSpinbox) +TkpDrawEntryBorderAndFocus(entryPtr, pixmap, isSpinbox) + Entry *entryPtr; + Drawable pixmap; + int isSpinbox; { return 0; } @@ -1567,7 +1570,9 @@ TkpDrawEntryBorderAndFocus(Entry *entryPtr, Drawable pixmap, int isSpinbox) */ int -TkpDrawSpinboxButtons(Spinbox *sbPtr, pixmap) +TkpDrawSpinboxButtons(sbPtr, pixmap) + Spinbox *sbPtr; + Pixmap pixmap; { return 0; } |