diff src/protocols/msn/history.c @ 9198:ab6636c5a136

[gaim-migrate @ 9993] Updated all the copyright headers for all the *.[ch] files -- all 63. No fun, but I receive great satisfaction in knowing that you all have to recompile this, again. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 06 Jun 2004 03:42:55 +0000
parents a7affa2e2986
children a7b2fd5efcf2
line wrap: on
line diff
--- a/src/protocols/msn/history.c	Sun Jun 06 03:30:20 2004 +0000
+++ b/src/protocols/msn/history.c	Sun Jun 06 03:42:55 2004 +0000
@@ -3,7 +3,9 @@
  *
  * gaim
  *
- * Copyright (C) 2003, Christian Hammond <chipx86@gnupdate.org>
+ * Gaim is the legal property of its developers, whose names are too numerous
+ * to list here.  Please refer to the COPYRIGHT file distributed with this
+ * source distribution.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -26,9 +28,9 @@
 msn_history_new(void)
 {
 	MsnHistory *history = g_new0(MsnHistory, 1);
-	
+
 	history->trId = 1;
-	
+
 	history->queue = g_queue_new();
 
 	return history;
@@ -68,9 +70,9 @@
 	GQueue *queue = history->queue;
 
 	trans->trId = history->trId++;
-	
+
 	g_queue_push_tail(queue, trans);
-	
+
 	if (queue->length > MSN_HIST_ELEMS)
 	{
 		trans = g_queue_pop_head(queue);