summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXClipboard.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-06-11 08:06:56 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-06-11 08:06:56 (GMT)
commit1c088c317f2e745d9cb6d114e8dd95a94ef8700f (patch)
tree641629368b0c8ca47b03cb3098e7abafcf34528e /macosx/tkMacOSXClipboard.c
parent793eef48e4b6d7e97c23a87b23687a756cf98482 (diff)
downloadtk-1c088c317f2e745d9cb6d114e8dd95a94ef8700f.zip
tk-1c088c317f2e745d9cb6d114e8dd95a94ef8700f.tar.gz
tk-1c088c317f2e745d9cb6d114e8dd95a94ef8700f.tar.bz2
Fix broken commits so function definitions match declarations and returns are
of values that should be produced.
Diffstat (limited to 'macosx/tkMacOSXClipboard.c')
-rw-r--r--macosx/tkMacOSXClipboard.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/macosx/tkMacOSXClipboard.c b/macosx/tkMacOSXClipboard.c
index d1f1baa..92d6590 100644
--- a/macosx/tkMacOSXClipboard.c
+++ b/macosx/tkMacOSXClipboard.c
@@ -198,14 +198,13 @@ XSetSelectionOwner(
*----------------------------------------------------------------------
*/
-int
+void
TkMacOSXSelDeadWindow(
TkWindow *winPtr)
{
if (winPtr && winPtr == (TkWindow *)clipboardOwner) {
clipboardOwner = NULL;
}
- return Success;
}
/*