23 lines
784 B
Diff
23 lines
784 B
Diff
Index: plugins/glade/plugin.c
|
|
===================================================================
|
|
--- plugins/glade/plugin.c.orig
|
|
+++ plugins/glade/plugin.c
|
|
@@ -642,7 +642,7 @@ ifile_open (IAnjutaFile *ifile, const gc
|
|
gchar *filename;
|
|
IAnjutaDocumentManager* docman;
|
|
GList* docwids, *node;
|
|
- const GList *glade_obj_node;
|
|
+ GList *glade_obj_node;
|
|
|
|
g_return_if_fail (uri != NULL);
|
|
|
|
@@ -718,7 +718,7 @@ ifile_open (IAnjutaFile *ifile, const gc
|
|
glade_plugin_add_project (ANJUTA_PLUGIN_GLADE (ifile), project);
|
|
|
|
/* Select the first window in the project */
|
|
- for (glade_obj_node = glade_project_get_objects (project);
|
|
+ for (glade_obj_node = (GList *) glade_project_get_objects (project);
|
|
glade_obj_node != NULL;
|
|
glade_obj_node = g_list_next (glade_obj_node))
|
|
{
|