extern "C" {
static void source_drag_data_delete( GtkWidget *WXUNUSED(widget),
- GdkDragContext *context,
+ GdkDragContext *WXUNUSED(context),
wxDropSource *WXUNUSED(drop_source) )
{
if (g_isIdle)
//-----------------------------------------------------------------------------
extern "C" {
-static gboolean gtk_frame_focus_callback( GtkWidget *widget, GtkDirectionType WXUNUSED(d), wxWindow *WXUNUSED(win) )
+static gboolean gtk_frame_focus_callback( GtkWidget *WXUNUSED(widget),
+ GtkDirectionType WXUNUSED(d),
+ wxWindow *WXUNUSED(win) )
{
if (g_isIdle)
wxapp_install_idle_handler();
NULL, /* class_data */
sizeof (GtkTreeEntry),
16, /* n_preallocs */
- (GInstanceInitFunc) gtk_tree_entry_init /*instance_init*/
+ (GInstanceInitFunc) gtk_tree_entry_init, /*instance_init*/
+ NULL /* value_table */
};
tree_entry_type = g_type_register_static (G_TYPE_OBJECT, "GtkTreeEntry",
&tree_entry_info,
sizeof (GtkPizza),
16, /* n_preallocs */
(GInstanceInitFunc) gtk_pizza_init,
+ NULL
};
pizza_type = g_type_register_static (GTK_TYPE_CONTAINER, "GtkPizza", &pizza_info, (GTypeFlags)0);
}