Fix for CS0104
svn path=/trunk/gtk-sharp/; revision=7756
This commit is contained in:
parent
7b5efe0866
commit
aa0ae0c644
1 changed files with 3 additions and 3 deletions
|
@ -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