summaryrefslogtreecommitdiff
path: root/gladeui/glade-inspector.c
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@gnome.org>2010-05-14 16:45:13 -0400
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2010-05-14 18:00:52 -0400
commit473df94ba6fbcbfde2cf6241504c13bb57e31fb1 (patch)
tree3989434ff2671f40c3f28c8d9d6503ccb77391cc /gladeui/glade-inspector.c
parentab6e2bc2234c977337bb951be14cfed2a5f0c1c7 (diff)
downloadglade-473df94ba6fbcbfde2cf6241504c13bb57e31fb1.tar.gz
Added ChangeLog entry for Johannes's work, fixed some compile warnings.
Diffstat (limited to 'gladeui/glade-inspector.c')
-rw-r--r--gladeui/glade-inspector.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gladeui/glade-inspector.c b/gladeui/glade-inspector.c
index e9735a34..ae85d483 100644
--- a/gladeui/glade-inspector.c
+++ b/gladeui/glade-inspector.c
@@ -716,7 +716,8 @@ update_project_completion (GladeProject *project,
items = glade_project_get_objects (priv->project);
- g_completion_add_items (priv->completion, items);
+ /* GCompletion API should take 'const GList *' */
+ g_completion_add_items (priv->completion, (GList *)items);
}
static void