diff libgaim/plugins/mono/api/BuddyList.cs @ 14993:58849b67f00d

[gaim-migrate @ 17772] A bit of long overdue work on this. There is no functional changes here, just getting started on this again :) committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sat, 18 Nov 2006 04:03:48 +0000
parents 60b1bc8dbf37
children
line wrap: on
line diff
--- a/libgaim/plugins/mono/api/BuddyList.cs	Fri Nov 17 21:54:46 2006 +0000
+++ b/libgaim/plugins/mono/api/BuddyList.cs	Sat Nov 18 04:03:48 2006 +0000
@@ -1,16 +1,15 @@
-using System;
-using System.Runtime.CompilerServices;
+namespace Gaim {
+	using System;
+	using System.Runtime.CompilerServices;
 
-namespace Gaim
-{
-	public class BuddyList
-	{
+	public class BuddyList {
 		[MethodImplAttribute(MethodImplOptions.InternalCall)]
 		extern private static IntPtr _get_handle();
 
 		private static IntPtr handle = _get_handle();
 		
-		public static Event OnBuddyStatusChanged = new Event(handle, "buddy-status-changed");
+		public static Event OnBuddyStatusChanged =
+			new Event(handle, "buddy-status-changed");
 		
 		public static IntPtr GetHandle()
 		{