diff options
author | dgp <dgp@users.sourceforge.net> | 2005-03-24 15:25:52 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-03-24 15:25:52 (GMT) |
commit | cc43759557da35ce47cb2a09e98f59e3ef7c43be (patch) | |
tree | 53276e6f629bfd328997c1a481f82f7b2bbd2a72 /generic/tkEntry.c | |
parent | aaefb48ff561e7d947da1c4fe5e268f4b1732d09 (diff) | |
download | tk-cc43759557da35ce47cb2a09e98f59e3ef7c43be.zip tk-cc43759557da35ce47cb2a09e98f59e3ef7c43be.tar.gz tk-cc43759557da35ce47cb2a09e98f59e3ef7c43be.tar.bz2 |
Syntax/Style Guide fixes
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; } |