about summary refs log tree commit diff stats
path: root/about.c
diff options
context:
space:
mode:
authorTodd T. Fries <todd@fries.net>2012-08-08 10:53:26 -0500
committerTodd T. Fries <todd@fries.net>2012-08-08 11:07:04 -0500
commit2428c63de10dfbb128c58aafb29ce1c22db32400 (patch)
treeb51428bdc1e7f164c4ae89f1c8cf843cd25237e4 /about.c
parent5742cb70caadb4159a7091d60dd17be465f1654d (diff)
downloadxombrero-2428c63de10dfbb128c58aafb29ce1c22db32400.tar.gz
fix for() loop, s/settings/name of gtk widget/, nix main_window
Diffstat (limited to 'about.c')
-rw-r--r--about.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/about.c b/about.c
index e415938..0ee45cf 100644
--- a/about.c
+++ b/about.c
@@ -2084,6 +2084,8 @@ show_g_object_settings(GObject *o, char *str, int recurse)
 	const gchar	*tname;
 	GValue		value;
 	GParamSpec	**proplist;
+	char		*tmpsettings;
+	const gchar	*name;
 
 	if (!G_IS_OBJECT(o)) {
 		fprintf(stderr, "%s is not a g_object\n", str);
@@ -2091,12 +2093,18 @@ show_g_object_settings(GObject *o, char *str, int recurse)
 	}
 	proplist = g_object_class_list_properties(
 	    G_OBJECT_GET_CLASS(o), &n_props);
+
+	if (GTK_IS_WIDGET(o)) {
+		name = gtk_widget_get_name(GTK_WIDGET(o));
+	} else {
+		name = "settings";
+	}
 	if (n_props == 0) {
-		body = g_strdup("settings[0] = { }");
+		body = g_strdup_printf("%s[0] = { }", name);
 		goto end_show_g_objects;
 	}
 
-	body = g_strdup_printf("settings[%d] = {\n", n_props);
+	body = g_strdup_printf("%s[%d] = {\n", name, n_props);
 	for (i=0; i < n_props; i++) {
 		pspec = proplist[i];
 		tname = G_OBJECT_TYPE_NAME(pspec);
@@ -2186,7 +2194,6 @@ int
 allthethings(struct tab *t, struct karg *arg)
 {
 	char			*page, *body, *b;
-	extern GtkWidget	*main_window;
 	GList			*list, *liter;
 	int			toplevelcount = 0;
 
@@ -2198,7 +2205,7 @@ allthethings(struct tab *t, struct karg *arg)
 	    "session", 1);
 #endif
 	list = gtk_window_list_toplevels();
-	for(liter = list; liter = liter->next; liter != NULL) {
+	for(liter = list; liter != NULL; liter = liter->next) {
 		b = g_strdup_printf("toplevel#%x", toplevelcount++);
 		
 		body = xt_append_settings(body, G_OBJECT(liter->data), b, 1);