diff options
author | Kevin Walzer <kw@codebykevin.com> | 2019-05-20 02:33:01 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2019-05-20 02:33:01 (GMT) |
commit | cc1acfaabd6c9e88963ea23d07c5654ad9532818 (patch) | |
tree | c82e25f53909d677bd9a15e39d4061676cfdbe42 /library/tk.tcl | |
parent | 53fd39ddc9ce3ad71ec95bc66101342c70032784 (diff) | |
download | tk-cc1acfaabd6c9e88963ea23d07c5654ad9532818.zip tk-cc1acfaabd6c9e88963ea23d07c5654ad9532818.tar.gz tk-cc1acfaabd6c9e88963ea23d07c5654ad9532818.tar.bz2 |
Add documentation on testing Mac services to README; remove obsolete detail from README; remove stub procedure for ::tk::mac::PerformService now that we have verified it works, to be consistent with other Mac-spdecific procedures such as ::tk::mac::OpenDocument
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index f1e164a..28e9aad 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -682,15 +682,6 @@ if {[tk windowingsystem] eq "aqua"} { namespace eval ::tk::mac { set useCustomMDEF 0 } - - #stub proc for NSServices API, must be replaced with custom implementation - proc ::tk::mac::PerformService {} { - - set data [clipboard get] - - tk_messageBox -icon info -title "Services Example" -message "This data was sent to Wish with the NSServices API:\n\n$data" - - } } #register to send data to macOS Services |