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