summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gladeui/glade-project.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gladeui/glade-project.c b/gladeui/glade-project.c
index 9f7d8be6..e750d447 100644
--- a/gladeui/glade-project.c
+++ b/gladeui/glade-project.c
@@ -1021,7 +1021,7 @@ glade_project_new (void)
* properties
*/
static void
-glade_project_fix_object_props (GladeProject *project)
+glade_project_fix_props (GladeProject *project)
{
GList *l, *ll, *objects;
GValue *value;
@@ -1542,10 +1542,11 @@ glade_project_load_internal (GladeProject *project)
if (glade_util_file_is_writeable (project->priv->path) == FALSE)
glade_project_set_readonly (project, TRUE);
- /* Now we have to loop over all the object properties
- * and fix'em all ('cause they probably weren't found)
+ /* Now we have to loop over all the object and bound properties
+ * and fix'em all ('cause the object they referred to probably
+ * weren't found)
*/
- glade_project_fix_object_props (project);
+ glade_project_fix_props (project);
/* Reset project status here too so that you get a clean
* slate after calling glade_project_open().