diff options
author | kajzer <[email protected]> | 2016-08-27 21:25:10 +0200 |
---|---|---|
committer | kajzer <[email protected]> | 2016-08-27 21:58:17 +0200 |
commit | f95d699d693d3781a15c90a04bc63ad62897eb48 (patch) | |
tree | d7870e7e8cfddba82557399a3d4058cd24075bc1 /src/themes/coco | |
parent | da0b7c16ee5cfaa0a3fa5e913e39b0c8b539e1bf (diff) | |
download | mate-notification-daemon-f95d699d693d3781a15c90a04bc63ad62897eb48.tar.bz2 mate-notification-daemon-f95d699d693d3781a15c90a04bc63ad62897eb48.tar.xz |
Fix: escape text #106
Diffstat (limited to 'src/themes/coco')
-rw-r--r-- | src/themes/coco/coco-theme.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index a3c54bd..ca742b4 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -495,16 +495,21 @@ void set_notification_text(GtkWindow *nw, const char *summary, const char *body) { char *str; + char* quoted; WindowData *windata = g_object_get_data(G_OBJECT(nw), "windata"); g_assert(windata != NULL); + quoted = g_markup_escape_text(summary, -1); str = g_strdup_printf( - "<span color=\"#FFFFFF\"><big><b>%s</b></big></span>", summary); + "<span color=\"#FFFFFF\"><big><b>%s</b></big></span>", quoted); + g_free(quoted); gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); g_free(str); + quoted = g_markup_escape_text(body, -1); str = g_strdup_printf( - "<span color=\"#EAEAEA\">%s</span>", body); + "<span color=\"#EAEAEA\">%s</span>", quoted); + g_free(quoted); gtk_label_set_markup (GTK_LABEL (windata->body_label), str); g_free(str); |