mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 21:35:28 +00:00
d7a08db9f6
* glue/adjustment.c: * glue/canvaspoints.c: * glue/clipboard.c: * glue/colorseldialog.c: * glue/combo.c: * glue/dialog.c: * glue/error.c: * glue/event.c: * glue/fileselection.c: * glue/list.c: * glue/object.c: * glue/paned.c: * glue/program.c: * glue/slist.c: * glue/style.c: * glue/type.c: * glue/value.c: * glue/widget.c: removed almost all the warnings. svn path=/trunk/gtk-sharp/; revision=12751
25 lines
454 B
C
25 lines
454 B
C
/* combo.c : Glue for accessing fields in the GtkCombo widget.
|
|
*
|
|
* Author: Pablo Baena (pbaena@uol.com.ar)
|
|
*
|
|
*/
|
|
|
|
#include <gtk/gtkcombo.h>
|
|
|
|
/* Forward declarations */
|
|
GtkWidget *gtksharp_combo_get_entry (GtkCombo* combo);
|
|
GtkWidget *gtksharp_combo_get_button (GtkCombo* combo);
|
|
/* */
|
|
|
|
GtkWidget*
|
|
gtksharp_combo_get_entry (GtkCombo* combo)
|
|
{
|
|
return combo->entry;
|
|
}
|
|
|
|
GtkWidget*
|
|
gtksharp_combo_get_button (GtkCombo* combo)
|
|
{
|
|
return combo->button;
|
|
}
|