summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Jon McCann <jmccann@redhat.com>2011-03-15 00:09:25 -0400
committerWilliam Jon McCann <jmccann@redhat.com>2011-03-15 00:09:25 -0400
commitcdc6f37dd86781d163c30c843f53d8b484cf8132 (patch)
tree864c2e6c11de4f6994f0a5e95d9c797325467647
parentb73380b5868a67522f7ca394cfdf71be22cd607e (diff)
downloadlibnotify-cdc6f37dd86781d163c30c843f53d8b484cf8132.tar.gz
Add another test with symbolic icons
-rw-r--r--tests/test-persistence.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-persistence.c b/tests/test-persistence.c
index 0541613..97bd157 100644
--- a/tests/test-persistence.c
+++ b/tests/test-persistence.c
@@ -67,7 +67,7 @@ main (int argc, char *argv[])
n = notify_notification_new ("Software Updates Available",
"Important updates for your apps are now available.",
- "software-update-available");
+ "software-update-available-symbolic");
notify_notification_add_action (n,
"install",
"Install now",
@@ -81,7 +81,7 @@ main (int argc, char *argv[])
if (!server_has_persistence ()) {
GtkStatusIcon *icon;
g_message ("Server does not support persistence; using a status icon");
- icon = gtk_status_icon_new_from_icon_name ("software-update-available");
+ icon = gtk_status_icon_new_from_icon_name ("software-update-available-symbolic");
gtk_status_icon_set_tooltip_markup (icon, "<b>Software Updates Available</b>\nImportant updates for your apps are now available.");
gtk_status_icon_set_visible (icon, TRUE);
} else {