summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-03-01 17:36:13 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-03-01 17:36:13 (GMT)
commitbc0f830a410e3cda93f230708229cb35dbb788f2 (patch)
tree4bcc2aec4b290a2d192a84c65a7032d77f9c51cb /library
parent2d1dee7c0fdf51a57ac71ed493aa92e278a7720e (diff)
parentbcb71c3efaadfc55dcd742522aaf331a40b9a7ec (diff)
downloadtk-bc0f830a410e3cda93f230708229cb35dbb788f2.zip
tk-bc0f830a410e3cda93f230708229cb35dbb788f2.tar.gz
tk-bc0f830a410e3cda93f230708229cb35dbb788f2.tar.bz2
trunk merged to branch tip-443
Diffstat (limited to 'library')
-rw-r--r--library/spinbox.tcl4
-rw-r--r--library/tk.tcl2
2 files changed, 5 insertions, 1 deletions
diff --git a/library/spinbox.tcl b/library/spinbox.tcl
index 6a5f829..02584f4 100644
--- a/library/spinbox.tcl
+++ b/library/spinbox.tcl
@@ -336,6 +336,7 @@ proc ::tk::spinbox::ClosestGap {w x} {
# Arguments:
# w - The spinbox window in which the button was pressed.
# x - The x-coordinate of the button press.
+# y - The y-coordinate of the button press.
proc ::tk::spinbox::ButtonDown {w x y} {
variable ::tk::Priv
@@ -388,6 +389,7 @@ proc ::tk::spinbox::ButtonDown {w x y} {
# Arguments:
# w - The spinbox window in which the button was pressed.
# x - The x-coordinate of the button press.
+# y - The y-coordinate of the button press.
proc ::tk::spinbox::ButtonUp {w x y} {
variable ::tk::Priv
@@ -491,6 +493,8 @@ proc ::tk::spinbox::Paste {w x} {
#
# Arguments:
# w - The spinbox window.
+# x - The x-coordinate of the mouse.
+# y - The y-coordinate of the mouse.
proc ::tk::spinbox::Motion {w x y} {
variable ::tk::Priv
diff --git a/library/tk.tcl b/library/tk.tcl
index 946ab7e..38162d1 100644
--- a/library/tk.tcl
+++ b/library/tk.tcl
@@ -13,7 +13,7 @@
# Insist on running with compatible version of Tcl
package require Tcl 8.6
# Verify that we have Tk binary and script components from the same release
-package require -exact Tk 8.6.4
+package require -exact Tk 8.6.5
# Create a ::tk namespace
namespace eval ::tk {