clearing a combo box
- From: jca <jca mail phm vcu edu>
- To: gtk <gtk-list redhat com>
- Subject: clearing a combo box
- Date: Fri, 10 Dec 1999 11:31:20 -0500
I have to clear and rebuild the same combo box several times during my
program, and am using this:
void clear_combo(GtkCombo *combo)
/* **********************************************************
* Temporary until something better comes along.
********************************************************** */
{
if(GTK_LIST(combo->list)){
gtk_list_clear_items(GTK_LIST(combo->list),0,-1);
printf("combo list cleared.\n");
}else{
printf("combo list empty.\n");
}
}/* clear_combo */
It works fine, but I doubt it is kosher memorywise because the string
items in the combo are all declared dymanically. What's a standard,
nice way of clearing out a combo box?
Thanks,
John
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]