Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sat, 18 Nov 2017 03:07:37 UTC Commit: d3b22aa14be0b310066b0e9670848bad4b0922f8 https://github.com/geany/geany-plugins/commit/d3b22aa14be0b310066b0e9670848b...
Log Message: ----------- Add missing cast under GTK3
Modified Paths: -------------- geanydoc/src/geanydoc.c
Modified: geanydoc/src/geanydoc.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -257,7 +257,7 @@ on_comboboxType_changed(GtkComboBox * combobox, G_GNUC_UNUSED gpointer user_data GKeyFile *config = (GKeyFile *) g_object_get_data(G_OBJECT(combobox), "config");
from = g_object_get_data(G_OBJECT(combobox), "current"); - to = gtk_combo_box_text_get_active_text(combobox); + to = gtk_combo_box_text_get_active_text(GTK_COMBO_BOX_TEXT(combobox));
if (from != NULL) {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org