Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 632a4ba

Browse files
committed
Merge pull request #143 from juergenhoetzel/FIX_AMBIGUOUS_REFERENCE
Fix ambiguous references
2 parents aef611e + 700b71a commit 632a4ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sample/gtk-gio/MountOperation.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ static void Main ()
4646
Window w = new Window ("test");
4747
operation = new Gtk.MountOperation (w);
4848
Button b = new Button ("Mount");
49-
b.Clicked += new EventHandler (HandleButtonClicked);
49+
b.Clicked += new System.EventHandler (HandleButtonClicked);
5050
b.Show ();
5151
w.Add (b);
5252
w.Show ();
5353
Gtk.Application.Run ();
5454
}
5555

56-
static void HandleButtonClicked (object sender, EventArgs args)
56+
static void HandleButtonClicked (object sender, System.EventArgs args)
5757
{
5858
System.Console.WriteLine ("clicked");
5959
file.MountEnclosingVolume (0, operation, null, new GLib.AsyncReadyCallback (HandleMountFinished));

0 commit comments

Comments
 (0)