Files
ports/databases/libgda5/files/patch-tools_browser_common_ui-formgrid.c
Dima Panov 7616a31774 databases/libgda5*: multiple fixes (+)
fix build with MySQL 8.4+
fix libgda-xlst API change
fix error with redefine bool

Obtaned from:	Gentoo
2026-04-09 21:55:19 +03:00

17 lines
720 B
C

--- tools/browser/common/ui-formgrid.c.orig 2020-11-08 20:23:20 UTC
+++ tools/browser/common/ui-formgrid.c
@@ -754,11 +754,11 @@ statement_executed_cb (G_GNUC_UNUSED BrowserConnection
ui_formgrid_handle_user_prefs (UI_FORMGRID (fg), NULL, stmt);
g_object_unref (stmt);
}
- aed->model = g_object_ref (out_result);
+ aed->model = (GdaDataModel *) g_object_ref (out_result);
g_signal_connect (aed->params, "holder-changed",
G_CALLBACK (action_executed_holder_changed_cb), aed);
- aed->formgrid = g_object_ref (fg);
+ aed->formgrid = (UiFormGrid *) g_object_ref (fg);
aed->formgrid->priv->autoupdate_possible = TRUE;
gtk_widget_show (aed->formgrid->priv->autoupdate_toggle);
}