mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:35:31 +00:00
77090286fa
svn path=/trunk/gtk-sharp/; revision=8402
14 lines
225 B
C
14 lines
225 B
C
/* combo.c : Glue for accessing fields in the GtkCombo widget.
|
|
*
|
|
* Author: Pablo Baena (pbaena@uol.com.ar)
|
|
*
|
|
*/
|
|
|
|
#include <gtk/gtkcombo.h>
|
|
|
|
GtkWidget*
|
|
gtksharp_combo_get_entry (GtkCombo* combo)
|
|
{
|
|
return combo->entry;
|
|
}
|