Esempio n. 1
0
        public static int GuiMain(String[] args)
        {
            Application.Init ();

            MonoCovGui main = new MonoCovGui ();

            // allow the app to show up first
            GLib.Idle.Add (delegate() {
                if (args.Length > 0)
                    main.OpenFile (args[0]);
                return false;
            });

            Application.Run ();

            return 0;
        }
Esempio n. 2
0
	public static int GuiMain (String[] args)
	{
		Application.Init ();

		MonoCovGui main = new MonoCovGui ();

		// allow the app to show up first
		GLib.Idle.Add (delegate (){
			if (args.Length > 0)
				main.OpenFile (args[0]);
			return false;
		});

		Application.Run ();

		return 0;
	}