summaryrefslogtreecommitdiff
path: root/src/glibext/gbufferline.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2012-11-22 19:51:17 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2012-11-22 19:51:17 (GMT)
commit3669bdaf8552f53baa5cfb2b0d360959eea61236 (patch)
tree94c5c5a74de1438c99320d4159b1f3de56961edf /src/glibext/gbufferline.c
parent29b390b5ed9f5c1a89db6d1e8d93d7126051b9a7 (diff)
Rewritten parts of the Android plugin to insert indications about exceptions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@288 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/glibext/gbufferline.c')
-rw-r--r--src/glibext/gbufferline.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/glibext/gbufferline.c b/src/glibext/gbufferline.c
index ce3e19f..c8ff5f2 100644
--- a/src/glibext/gbufferline.c
+++ b/src/glibext/gbufferline.c
@@ -345,6 +345,16 @@ static void g_buffer_line_class_init(GBufferLineClass *class)
attrib = pango_attr_foreground_new(14335, 45311, 23551);
pango_attr_list_insert(class->attribs[RTT_COMMENT], attrib);
+ /* RTT_INDICATION */
+
+ class->attribs[RTT_INDICATION] = pango_attr_list_new();
+
+ attrib = pango_attr_foreground_new(33410, 33410, 33410);
+ pango_attr_list_insert(class->attribs[RTT_INDICATION], attrib);
+
+ attrib = pango_attr_style_new(PANGO_STYLE_ITALIC);
+ pango_attr_list_insert(class->attribs[RTT_INDICATION], attrib);
+
/* RTT_RAW_CODE */
class->attribs[RTT_RAW_CODE] = pango_attr_list_new();