diff src/protocols/novell/nmevent.c @ 8684:046dd8ef2920

[gaim-migrate @ 9437] Excess whitespace bad, especially *that* much. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 17 Apr 2004 18:29:20 +0000
parents 9ee2542d1104
children a2affcdf8e01
line wrap: on
line diff
--- a/src/protocols/novell/nmevent.c	Sat Apr 17 18:28:30 2004 +0000
+++ b/src/protocols/novell/nmevent.c	Sat Apr 17 18:29:20 2004 +0000
@@ -9,7 +9,7 @@
  * RECAST, TRANSFORMED OR ADAPTED WITHOUT THE PRIOR WRITTEN CONSENT OF NOVELL,
  * INC. ANY USE OR EXPLOITATION OF THIS WORK WITHOUT AUTHORIZATION COULD SUBJECT
  * THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY.
- * 
+ *
  * AS BETWEEN [GAIM] AND NOVELL, NOVELL GRANTS [GAIM] THE RIGHT TO REPUBLISH
  * THIS WORK UNDER THE GPL (GNU GENERAL PUBLIC LICENSE) WITH ALL RIGHTS AND
  * LICENSES THEREUNDER.  IF YOU HAVE RECEIVED THIS WORK DIRECTLY OR INDIRECTLY
@@ -132,7 +132,7 @@
 	if (ret_val == NM_OK) {
 		if (event && user_record) {
 
-			/* Add the user record to the event structure 
+			/* Add the user record to the event structure
 			 * and make the callback.
 			 */
 			nm_event_set_user_record(event, user_record);
@@ -175,7 +175,7 @@
 			/* Add source of event as recip of the conference */
 			nm_conference_add_participant(conference, user_record);
 
-			/* Add the user record to the event structure 
+			/* Add the user record to the event structure
 			 * and make the callback.
 			 */
 			nm_event_set_user_record(event, user_record);
@@ -469,7 +469,7 @@
 }
 
 /* Read the conference left event, set up the event object, and
- * remove the conference from the list if there are no more 
+ * remove the conference from the list if there are no more
  * participants
  */
 static NMERR_T
@@ -500,12 +500,12 @@
 		if (conference) {
 			nm_event_set_conference(event, conference);
 			nm_conference_set_flags(conference, flags);
-			
+
 			nm_conference_remove_participant(conference, nm_event_get_source(event));
 			if (nm_conference_get_participant_count(conference) == 0) {
 				nm_conference_list_remove(user, conference);
 			}
-			
+
 		} else {
 			rc = NMERR_CONFERENCE_NOT_FOUND;
 		}
@@ -585,22 +585,22 @@
 		conference = nm_conference_list_find(user, guid);
 		if (conference) {
 			nm_conference_set_flags(conference, flags);
-			
+
 			nm_event_set_conference(event, conference);
-			
+
 			/* Add the new user to the participants list */
 			user_record = nm_find_user_record(user, nm_event_get_source(event));
 			if (user_record) {
 				nm_conference_add_participant(conference, user_record);
 			} else {
-				
+
 				/* Need to go to the server to get details for the user */
 				rc = nm_send_get_details(user, nm_event_get_source(event),
 										 _got_user_for_conference, event);
 				if (rc == NM_OK)
 					rc = -1;		/* Not done processing the event yet! */
 			}
-			
+
 		} else {
 			rc = NMERR_CONFERENCE_NOT_FOUND;
 		}