diff --git a/ChangeLog b/ChangeLog index 11dd59196..aafabe4c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-05-22 Todd Berman + + * gnome/Program.custom: Change the Mono.Runtime stuff to reflect + its new internal nature. This fixes MD, gnunit, and all gnome# + programs that were blowing up for no reason. + 2004-05-22 Radek Doulik * gtk/TreeView.custom(GetPathAtPos): change Gtk.TreeViewColumn diff --git a/gnome/Program.custom b/gnome/Program.custom index e280b2d24..444b50cd4 100644 --- a/gnome/Program.custom +++ b/gnome/Program.custom @@ -61,7 +61,7 @@ public Program (string app_id, string app_version, ModuleInfo module, string[] a Type mono_runtime_type = Type.GetType ("Mono.Runtime"); if (mono_runtime_type != null){ object [] iargs = new object [0]; - System.Reflection.MethodInfo mi = mono_runtime_type.GetMethod ("InstallSignalHandlers"); + System.Reflection.MethodInfo mi = mono_runtime_type.GetMethod ("InstallSignalHandlers", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static); mi.Invoke (null, iargs); }