summaryrefslogtreecommitdiff
path: root/src/panel/log.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-04-12 19:15:35 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-04-12 19:15:35 (GMT)
commit216a3d0121fabd678e50ea6b4fa2447ae9b921f0 (patch)
tree395fcd91b674ff5652e34b46207ba08cc9e7af68 /src/panel/log.c
parentedac614a164d9cac345d914f4320d71bdb16ab79 (diff)
Created a debugging layout and introduced a heavier use of GLib.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@58 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panel/log.c')
-rw-r--r--src/panel/log.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/panel/log.c b/src/panel/log.c
index f98953f..94bb8a4 100644
--- a/src/panel/log.c
+++ b/src/panel/log.c
@@ -147,6 +147,13 @@ void log_simple_message(LogMessageType type, const char *msg)
-1);
break;
+ case LMT_PROCESS:
+ gtk_tree_store_set(store, &iter,
+ LGC_PICTURE, "gtk-execute",
+ LGC_STRING, msg,
+ -1);
+ break;
+
}
}