Skip to content

Commit 41b5314

Browse files
author
jan.nijtmans
committed
Merge 9.0 and follow-up to previous commit: Remove copyright
2 parents 41f0c5c + a9d84bc commit 41b5314

File tree

12 files changed

+21
-32
lines changed

12 files changed

+21
-32
lines changed

doc/print.n

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Text automatically generated by txt2man
22
'\"
3-
'\" Copyright (c) 2021 Kevin Walzer/WordTech Communications LLC.
3+
'\" Copyright (c) 2021 Kevin Walzer.
44
'\"
55
'\" See the file "license.terms" for information on usage and redistribution
66
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.

doc/sysnotify.n

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Text automatically generated by txt2man
22
'\"
3-
'\" Copyright (c) 2020 Kevin Walzer/WordTech Communications LLC.
3+
'\" Copyright (c) 2020 Kevin Walzer.
44
'\"
55
'\" See the file "license.terms" for information on usage and redistribution
66
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.

doc/systray.n

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Text automatically generated by txt2man
22
'\"
3-
'\" Copyright (c) 2020 Kevin Walzer/WordTech Communications LLC.
3+
'\" Copyright (c) 2020 Kevin Walzer.
44
'\"
55
'\" See the file "license.terms" for information on usage and redistribution
66
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.

generic/ttk/ttkCache.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ static void CacheWinEventHandler(void *clientData, XEvent *eventPtr)
253253
* InitCacheWindow --
254254
* Specify the cache window if not already set.
255255
*/
256-
static void InitCacheWindow(Ttk_ResourceCache cache, Tk_Window tkwin)
256+
static void InitCacheWindow(Ttk_ResourceCache cache)
257257
{
258258
if (cache->tkwin == NULL) {
259259
cache->tkwin = Tk_MainWindow(cache->interp);
@@ -278,7 +278,7 @@ void Ttk_RegisterNamedColor(
278278
Tcl_Obj *colorNameObj;
279279

280280
snprintf(nameBuf, sizeof(nameBuf), "#%04X%04X%04X",
281-
colorPtr->red, colorPtr->green, colorPtr->blue);
281+
colorPtr->red, colorPtr->green, colorPtr->blue);
282282
colorNameObj = Tcl_NewStringObj(nameBuf, -1);
283283
Tcl_IncrRefCount(colorNameObj);
284284

@@ -300,7 +300,7 @@ void Ttk_RegisterNamedColor(
300300
static Tcl_Obj *CheckNamedColor(Ttk_ResourceCache cache, Tcl_Obj *objPtr)
301301
{
302302
Tcl_HashEntry *entryPtr =
303-
Tcl_FindHashEntry(&cache->namedColors, Tcl_GetString(objPtr));
303+
Tcl_FindHashEntry(&cache->namedColors, Tcl_GetString(objPtr));
304304
if (entryPtr) { /* Use named color instead */
305305
objPtr = (Tcl_Obj *)Tcl_GetHashValue(entryPtr);
306306
}
@@ -386,7 +386,7 @@ static Tcl_Obj *Ttk_Use(
386386
*/
387387
Tcl_Obj *Ttk_UseFont(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr)
388388
{
389-
InitCacheWindow(cache, tkwin);
389+
InitCacheWindow(cache);
390390
return Ttk_Use(cache->interp,
391391
&cache->fontTable, AllocFont, tkwin, objPtr);
392392
}
@@ -398,7 +398,7 @@ Tcl_Obj *Ttk_UseFont(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr)
398398
Tcl_Obj *Ttk_UseColor(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr)
399399
{
400400
objPtr = CheckNamedColor(cache, objPtr);
401-
InitCacheWindow(cache, tkwin);
401+
InitCacheWindow(cache);
402402
return Ttk_Use(cache->interp,
403403
&cache->colorTable, AllocColor, tkwin, objPtr);
404404
}
@@ -411,7 +411,7 @@ Tcl_Obj *Ttk_UseBorder(
411411
Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr)
412412
{
413413
objPtr = CheckNamedColor(cache, objPtr);
414-
InitCacheWindow(cache, tkwin);
414+
InitCacheWindow(cache);
415415
return Ttk_Use(cache->interp,
416416
&cache->borderTable, AllocBorder, tkwin, objPtr);
417417
}
@@ -442,7 +442,7 @@ Tk_Image Ttk_UseImage(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr)
442442
Tcl_HashEntry *entryPtr;
443443
Tk_Image image;
444444

445-
InitCacheWindow(cache, tkwin);
445+
InitCacheWindow(cache);
446446
#if !NEED_EXTRA_INFO
447447
entryPtr = Tcl_CreateHashEntry(&cache->imageTable, imageName, &newEntry);
448448
#else

library/iconbadges.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Notification badges for Tk applications.
44
#
55
#
6-
# Copyright © 2021 Kevin Walzer/WordTech Communications LLC
6+
# Copyright © 2021 Kevin Walzer
77

88
namespace eval ::tk::icons {}
99

macosx/Credits.html.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Tcl and Tk are distributed under a modified BSD license:<br>
1111
</p>
1212
<ul style="list-style-type:none;">
1313
<li>&copy; 1987-@TK_YEAR@ Tcl Core Team and Contributers.</li>
14-
<li>&copy; 2011-@TK_YEAR@ Kevin Walzer/WordTech Communications LLC.</li>
14+
<li>&copy; 2011-@TK_YEAR@ Kevin Walzer.</li>
1515
<li>&copy; 2014-@TK_YEAR@ Marc Culler.</li>
1616
<li>&copy; 2002-2012 Daniel A. Steffen.</li>
1717
<li>&copy; 2001-2009 Apple Inc.</li>

macosx/Tk-Info.plist.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
Copyright © 1989-@TK_YEAR@ Tcl Core Team,
1919
Copyright © 2002-@TK_YEAR@ Daniel A. Steffen,
2020
Copyright © 1989-@TK_YEAR@ Contributors,
21-
Copyright © 2011-@TK_YEAR@ Kevin Walzer/WordTech
22-
Communications LLC,
21+
Copyright © 2011-@TK_YEAR@ Kevin Walzer,
2322
Copyright © 2014-@TK_YEAR@ Marc Culler,
2423
Copyright © 2001-2009 Apple Inc.,
2524
Copyright © 2001-2002 Jim Ingham &amp; Ian Reid</string>

macosx/Wish-Info.plist.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<string>Wish Shell @TK_VERSION@@TK_PATCH_LEVEL@,
5656
Copyright © 1989-@TK_YEAR@ Tcl Core Team,
5757
Copyright © 1989-@TK_YEAR@ Contributors,
58-
Copyright © 2011-@TK_YEAR@ Kevin Walzer/WordTech Communications LLC,
58+
Copyright © 2011-@TK_YEAR@ Kevin Walzer,
5959
Copyright © 2014-@TK_YEAR@ Marc Culler,
6060
Copyright © 2002-@TK_YEAR@ Daniel A. Steffen,
6161
Copyright © 2001-2009 Apple Inc.,

macosx/Wish.sdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
33
<!--
44
Copyright © 1997 Sun Microsystems, Inc.
5-
Copyright © 2009 Kevin Walzer/WordTech Communications LLC.
5+
Copyright © 2009 Kevin Walzer.
66
Copyright © 2009 Daniel A. Steffen <das@users.sourceforge.net>
77
88
See the file "license.terms" for information on usage and redistribution of

macosx/tkMacOSXScrlbr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Copyright © 1996 Sun Microsystems, Inc.
88
* Copyright © 2001-2009 Apple Inc.
99
* Copyright © 2006-2009 Daniel A. Steffen <das@users.sourceforge.net>
10-
* Copyright © 2015 Kevin Walzer/WordTech Commununications LLC.
10+
* Copyright © 2015 Kevin Walzer.
1111
* Copyright © 2018-2019 Marc Culler
1212
*
1313
* See the file "license.terms" for information on usage and redistribution

0 commit comments

Comments
 (0)