Okay, I've found that inconvenient default setting I'd changed in my own tk
package [in src/tk/dialogues.jl] :
## Message box
function Messagebox(parent::MaybeWidget; title::String="",
message::String="", detail::String="")
args = Dict()
if !isa(parent, Nothing) args["parent"] = get_path(parent) end
if length(title) > 0 args["title"] = title end
if length(message) > 0 args["message"] = me----------------ssage end
if length(detail) > 0 args["detail"] = detail end
args["type"] = "yesno" *[<--- The default was "okcancel"]*
tcl("tk_messageBox", args)
end
----------------
Changing the default allowed me to make "no" -- resuming -- a viable choice
-- but updating to the new julia restored the [rather useless, those bloody
'ok' buttons for messages that are far indeed from 'ok'!!!] original
default and fnurgled my 'quit' button.
So now, thanks, I'll run with '-depwarn=no;' full speed ahead!
On Sat, Oct 17, 2015 at 12:20 PM, David Anthoff <[email protected]>
wrote:
> I very much agree, adding deprecation warnings should be treated as a
> feature change, i.e. those should really go in before a feature freeze
> (whereas for 0.4 very many went in even after RC1), but at least before the
> RC sequence starts.
>
>
>
> *From:* [email protected] [mailto:[email protected]]
> *On Behalf Of *Iain Dunning
> *Sent:* Saturday, October 17, 2015 8:50 AM
> *To:* julia-users <[email protected]>
> *Subject:* Re: [julia-users] Re: Everything I wrote in version .3 is now
> 'depreciated'
>
>
>
> @Kristoffer, it definitely was a bit short, but not for the reason you'd
> think. The types were deprecated very early in 0.4 development (mostly),
> but code to generate warnings wasn't added until quite late. Definitely an
> oversight, several of us have been fixing them wherever we can. Won't
> happen again for 0.5.
>
> On Saturday, October 17, 2015 at 11:26:39 AM UTC-4, Forrest Curo wrote:
>
> Thanks, all!
>
> Most of my booboos seem to be due to the fact that julia doesn't like
> 'foo ()'
> anymore, she now prefers 'foo()' which I suppose makes the parsing simpler.
>
> And I now know where to find that pesky tk button code...
>
>
>
> On Sat, Oct 17, 2015 at 8:00 AM, Kristoffer Carlsson <[email protected]>
> wrote:
>
> You can start julia with -depwarn=no to turn off deprecation warnings.
>
> On a personal note, I think that the time between type deprecation and the
> release was possibly a bit short. It feels that whatever package I import
> now I get pages of deprecation warnings. This is particularly inconvenient
> in IJulia sessions.
>
>
>
>