# HG changeset patch # User Christian Hammond # Date 1064169726 0 # Node ID e30bedfb99db3f0f241433eeffe1b0c6b4cd37a6 # Parent 5ace3b44cf61239f1181e4f84fac20b953564649 [gaim-migrate @ 7449] Ugly Big Red Line removal. committer: Tailor Script diff -r 5ace3b44cf61 -r e30bedfb99db src/accountopt.c --- 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 - * + * * 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) diff -r 5ace3b44cf61 -r e30bedfb99db src/accountopt.h --- 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 - * + * * 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(