From a37695b99ad97b5db2e32ab4c3edaf7fc9521308 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 9 Sep 2012 12:10:54 +0200 Subject: [PATCH] Bugfix to work on multiarch. --- libgtkform/widgetcombobox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgtkform/widgetcombobox.c b/libgtkform/widgetcombobox.c index 0e52d58..9718ccb 100644 --- a/libgtkform/widgetcombobox.c +++ b/libgtkform/widgetcombobox.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2009 Andrea Zagli + * Copyright (C) 2005-2012 Andrea Zagli * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -176,7 +176,7 @@ gtk_form_widget_combo_box_set_value_stringify (GtkFormWidget *fwidget, g_value_init (gvstr, G_TYPE_STRING); g_value_transform (gvalue, gvstr); - if (strcmp (g_value_get_string (gvstr), value) == 0) + if (g_strcmp0 (g_value_get_string (gvstr), value) == 0) { gtk_combo_box_set_active_iter (GTK_COMBO_BOX (w), &iter); break; -- 2.49.0