2004-05-22 Todd Berman <tberman@sevenl.net>
* 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. svn path=/trunk/gtk-sharp/; revision=27898
This commit is contained in:
parent
47bbd783d5
commit
7951ca21de
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-05-22 Todd Berman <tberman@sevenl.net>
|
||||
|
||||
* 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 <rodo@ximian.com>
|
||||
|
||||
* gtk/TreeView.custom(GetPathAtPos): change Gtk.TreeViewColumn
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue