diff src/accountopt.c @ 5654:c52a97f3739e

[gaim-migrate @ 6068] Fixed these function names. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 06:41:14 +0000
parents 408fef845144
children 1709a545a7bd
line wrap: on
line diff
--- a/src/accountopt.c	Mon Jun 02 06:39:09 2003 +0000
+++ b/src/accountopt.c	Mon Jun 02 06:41:14 2003 +0000
@@ -223,7 +223,15 @@
 }
 
 const char *
-gaim_account_split_get_default_value(const GaimAccountUserSplit *split)
+gaim_account_user_split_get_text(const GaimAccountUserSplit *split)
+{
+	g_return_val_if_fail(split != NULL, NULL);
+
+	return split->text;
+}
+
+const char *
+gaim_account_user_split_get_default_value(const GaimAccountUserSplit *split)
 {
 	g_return_val_if_fail(split != NULL, NULL);
 
@@ -231,7 +239,7 @@
 }
 
 char
-gaim_account_split_get_separator(const GaimAccountUserSplit *split)
+gaim_account_user_split_get_separator(const GaimAccountUserSplit *split)
 {
 	g_return_val_if_fail(split != NULL, 0);