Oops forgot to attach patches.  they are also available where on the blog

-- 
Matthew O'Gorman
xim: [email protected]
email: [email protected]
site: http://blog.rldn.net
+-------------------------------------------------------------------+
  A priest advised Voltaire on his death bed to renounce the devil.
  Replied Voltaire, "This is no time to make new enemies."
+-------------------------------------------------------------------+
Index: src/UI/Linux/LinuxClient/application/iFolderApplication.cs
===================================================================
--- src/UI/Linux/LinuxClient/application/iFolderApplication.cs	(revision 6679)
+++ src/UI/Linux/LinuxClient/application/iFolderApplication.cs	(working copy)
@@ -1968,7 +1968,7 @@
 
 		public static void Main (string[] args)
 		{
-			Process[] processes =
+			System.Diagnostics.Process[] processes =
 				System.Diagnostics.Process.GetProcessesByName("iFolderClient");
 
 			if(processes.Length > 1)

Index: src/core/Notifications/Notification.cs
===================================================================
--- src/core/Notifications/Notification.cs	(revision 7020)
+++ src/core/Notifications/Notification.cs	(working copy)
@@ -629,7 +629,7 @@
 			{
 				CollectionSyncEventArgs cseArgs = args as CollectionSyncEventArgs;
 
-				if ( cseArgs.Action.Equals ( Action.StopSync ) )
+				if ( cseArgs.Action.Equals ( Simias.Client.Event.Action.StopSync ) )
 				{
 					// If the collection is in the initial sync list and the sync finished successfully,
 					// remove it from the list.
Index: src/core/Sync/SyncClient.cs
===================================================================
--- src/core/Sync/SyncClient.cs	(revision 7020)
+++ src/core/Sync/SyncClient.cs	(working copy)
@@ -973,7 +973,7 @@
 			bool	sAlive = false;
 			try
 			{
-				eventPublisher.RaiseEvent(new CollectionSyncEventArgs(collection.Name, collection.ID, Action.StartLocalSync, true, false));
+				eventPublisher.RaiseEvent(new CollectionSyncEventArgs(collection.Name, collection.ID, Simias.Client.Event.Action.StartLocalSync, true, false));
 				syncStartTime = DateTime.Now;
 				queuedChanges = false;
 				running = true;
@@ -1077,7 +1077,7 @@
                 
 				sAlive = true;
 			
-				eventPublisher.RaiseEvent(new CollectionSyncEventArgs(collection.Name, collection.ID, Action.StartSync, true, false));
+				eventPublisher.RaiseEvent(new CollectionSyncEventArgs(collection.Name, collection.ID, Simias.Client.Event.Action.StartSync, true, false));
 
 				tempServerContext = si.Context;
 				workArray.SetAccess = rights = si.Access;
@@ -1245,7 +1245,7 @@
 				serverAlive = sAlive;
 				running = false;
                 fileMonitor.ToDredge = false;
-                eventPublisher.RaiseEvent(new CollectionSyncEventArgs(collection.Name, collection.ID, Action.StopSync, sAlive, yielded));
+                eventPublisher.RaiseEvent(new CollectionSyncEventArgs(collection.Name, collection.ID, Simias.Client.Event.Action.StopSync, sAlive, yielded));
 			}
 		}
 

Attachment: signature.asc
Description: Digital signature

_______________________________________________
ifolder-dev mailing list
[email protected]
http://forge.novell.com/mailman/listinfo/ifolder-dev

Reply via email to