mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-04-20 11:41:45 +00:00
Fix for CS0104
svn path=/trunk/gtk-sharp/; revision=7756
This commit is contained in:
parent
7b5efe0866
commit
aa0ae0c644
|
@ -36,17 +36,17 @@ namespace GladeSamples {
|
|||
args.RetVal = true;
|
||||
}
|
||||
|
||||
public void OnButton1Clicked (Object b, EventArgs e)
|
||||
public void OnButton1Clicked (System.Object b, EventArgs e)
|
||||
{
|
||||
Console.WriteLine ("Button 1 clicked");
|
||||
}
|
||||
|
||||
public static void OnButton2Clicked (Object b, EventArgs e)
|
||||
public static void OnButton2Clicked (System.Object b, EventArgs e)
|
||||
{
|
||||
Console.WriteLine ("Button 2 clicked");
|
||||
}
|
||||
|
||||
public void OnButton2Entered (Object b, EventArgs e)
|
||||
public void OnButton2Entered (System.Object b, EventArgs e)
|
||||
{
|
||||
Console.WriteLine ("Button 2 entered");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue