trash e_utf8_gtk function (e_search_bar_get_text): ditto

2003-05-07  JP Rosevear  <jpr@ximian.com>

	* e-search-bar.c (e_search_bar_set_text): trash e_utf8_gtk
function
	(e_search_bar_get_text): ditto

svn path=/trunk/; revision=21129
This commit is contained in:
JP Rosevear
2003-05-08 14:02:52 +00:00
committed by JP Rosevear
parent bce1283eb5
commit 692862c505
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-05-07 JP Rosevear <jpr@ximian.com>
* e-search-bar.c (e_search_bar_set_text): trash e_utf8_gtk function
(e_search_bar_get_text): ditto
2003-04-29 Dan Winship <danw@ximian.com>
* e-dateedit.c (e_date_edit_forall): Remove this so that

View File

@ -1220,7 +1220,7 @@ e_search_bar_set_text (ESearchBar *search_bar, const char *text)
{
g_return_if_fail (E_IS_SEARCH_BAR (search_bar));
e_utf8_gtk_editable_set_text (GTK_EDITABLE (search_bar->entry), text);
gtk_entry_set_text (GTK_ENTRY (search_bar->entry), text);
}
/**
@ -1239,5 +1239,5 @@ e_search_bar_get_text (ESearchBar *search_bar)
g_return_val_if_fail (search_bar != NULL, NULL);
g_return_val_if_fail (E_IS_SEARCH_BAR (search_bar), NULL);
return search_bar->subitem_id < 0 ? e_utf8_gtk_editable_get_text (GTK_EDITABLE (search_bar->entry)) : NULL;
return search_bar->subitem_id < 0 ? g_strdup (gtk_entry_get_text (GTK_ENTRY (search_bar->entry))) : NULL;
}