changeset 6902:e30bedfb99db

[gaim-migrate @ 7449] Ugly Big Red Line removal. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 21 Sep 2003 18:42:06 +0000
parents 5ace3b44cf61
children 347e456550e6
files src/accountopt.c src/accountopt.h
diffstat 2 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/accountopt.c	Sun Sep 21 16:14:50 2003 +0000
+++ b/src/accountopt.c	Sun Sep 21 18:42:06 2003 +0000
@@ -5,7 +5,7 @@
  * gaim
  *
  * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
- * 
+ *
  * 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
  * the Free Software Foundation; either version 2 of the License, or
@@ -49,7 +49,7 @@
 							 gboolean default_value)
 {
 	GaimAccountOption *option;
-	
+
 	option = gaim_account_option_new(GAIM_PREF_BOOLEAN, text, pref_name);
 
 	if (option == NULL)
@@ -65,7 +65,7 @@
 							int default_value)
 {
 	GaimAccountOption *option;
-	
+
 	option = gaim_account_option_new(GAIM_PREF_INT, text, pref_name);
 
 	if (option == NULL)
@@ -81,7 +81,7 @@
 							   const char *default_value)
 {
 	GaimAccountOption *option;
-	
+
 	option = gaim_account_option_new(GAIM_PREF_STRING, text, pref_name);
 
 	if (option == NULL)
--- a/src/accountopt.h	Sun Sep 21 16:14:50 2003 +0000
+++ b/src/accountopt.h	Sun Sep 21 18:42:06 2003 +0000
@@ -5,7 +5,7 @@
  * gaim
  *
  * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
- * 
+ *
  * 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
  * the Free Software Foundation; either version 2 of the License, or
@@ -27,7 +27,7 @@
 
 /**
  * An option for an account.
- * 
+ *
  * This is set by protocol plugins, and appears in the account settings
  * dialogs.
  */
@@ -187,7 +187,7 @@
  * Returns the default boolean value for an account option.
  *
  * @param option The account option.
- * 
+ *
  * @return The default boolean value.
  */
 gboolean gaim_account_option_get_default_bool(const GaimAccountOption *option);
@@ -196,7 +196,7 @@
  * Returns the default integer value for an account option.
  *
  * @param option The account option.
- * 
+ *
  * @return The default integer value.
  */
 int gaim_account_option_get_default_int(const GaimAccountOption *option);
@@ -205,7 +205,7 @@
  * Returns the default string value for an account option.
  *
  * @param option The account option.
- * 
+ *
  * @return The default string value.
  */
 const char *gaim_account_option_get_default_string(