GNOME Bugzilla – Bug 409775
runInterval chronopic strange behaviour on start
Last modified: 2007-03-09 19:41:06 UTC
on src/execute/event.cs method: protected Chronopic.Plataforma chronopicInitialValue(Chronopic cp) do { Console.WriteLine("B"); try { ok = cp.Read_platform(out myPlatformState); } catch { Console.WriteLine("Manage called after finishing constructor, do later"); } Console.WriteLine("C"); (...) } Goes to the catch infinite times. It's stopped at third time, and then it's understood like if the user is always outside, but this is not true.
*** Bug 407772 has been marked as a duplicate of this bug. ***
Fixed here: http://svn.gnome.org/viewcvs/chronojump/trunk/src/execute/run.cs?r1=214&r2=216 Seems there sohuld be difference in chronopic being private (event/jump.cs) or protected (event/run.cs), depending on inherition of the "Manage" and the "cp". Probably it's a mono bug. Now it works!