[geany/geany-plugins] d3b22a: Add missing cast under GTK3
Colomban Wendling
git-noreply at xxxxx
Sat Nov 18 03:07:37 UTC 2017
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Sat, 18 Nov 2017 03:07:37 UTC
Commit: d3b22aa14be0b310066b0e9670848bad4b0922f8
https://github.com/geany/geany-plugins/commit/d3b22aa14be0b310066b0e9670848bad4b0922f8
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).
More information about the Plugins-Commits
mailing list