diff libpurple/protocols/jabber/ibb.h @ 25952:5f9a24d1c25e

Remove some extra trailing whitespace I noticed after merging mlundblad's xmpp branches.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 02 Mar 2009 06:37:05 +0000
parents 151b4054ce40
children 50ff0162fe26
line wrap: on
line diff
--- a/libpurple/protocols/jabber/ibb.h	Mon Mar 02 06:26:15 2009 +0000
+++ b/libpurple/protocols/jabber/ibb.h	Mon Mar 02 06:37:05 2009 +0000
@@ -3,17 +3,17 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
  */
- 
+
 #ifndef _PURPLE_JABBER_IBB_H_
 #define _PURPLE_JABBER_IBB_H_
 
@@ -24,7 +24,7 @@
 
 typedef struct _JabberIBBSession JabberIBBSession;
 
-typedef void 
+typedef void
 (JabberIBBDataCallback)(JabberIBBSession *, const gpointer data, gsize size);
 
 typedef void (JabberIBBOpenedCallback)(JabberIBBSession *);
@@ -49,13 +49,13 @@
 	guint16 send_seq;
 	guint16 recv_seq;
 	gsize block_size;
-	
+
 	/* session state */
 	JabberIBBSessionState state;
-	
+
 	/* user data (f.ex. a handle to a PurpleXfer) */
 	gpointer user_data;
-	
+
 	/* callbacks */
 	JabberIBBOpenedCallback *opened_cb;
 	JabberIBBSentCallback *data_sent_cb;
@@ -63,7 +63,7 @@
 	/* callback for receiving data */
 	JabberIBBDataCallback *data_received_cb;
 	JabberIBBErrorCallback *error_cb;
-	
+
 	/* store the last sent IQ (to permit cancel of callback) */
 	gchar *last_iq_id;
 };