~ubuntu-branches/ubuntu/saucy/gnome-contacts/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/patches/01-birthday_icon.patch

  • Committer: Package Import Robot
  • Author(s): Ken VanDine
  • Date: 2012-07-02 16:50:25 UTC
  • Revision ID: package-import@ubuntu.com-20120702165025-bpw43bjlusz8uj6b
Tags: 3.5.1-0ubuntu3
* debian/patches/01-birthday_icon.patch
  - Fixed symbolic icon for birthday (LP: #1020292)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit 24a4daf79b38f39b6c9e6acc60926044f7c579cb
 
2
Author: Ken VanDine <ken.vandine@canonical.com>
 
3
Date:   Mon Jul 2 16:28:14 2012 -0400
 
4
 
 
5
    Handle icon rename in gnome-icon-theme-symbolic.  The icon used for birthday,
 
6
    preferences-system-date-and-time-symbolic was renamed to
 
7
    preferences-system-time-symbolic
 
8
    https://bugzilla.gnome.org/show_bug.cgi?id=679277
 
9
 
 
10
diff --git a/src/contacts-contact-pane.vala b/src/contacts-contact-pane.vala
 
11
index 77073a6..930c113 100644
 
12
--- a/src/contacts-contact-pane.vala
 
13
+++ b/src/contacts-contact-pane.vala
 
14
@@ -817,7 +817,7 @@ class Contacts.BirthdayFieldRow : DataFieldRow {
 
15
     this.details = details;
 
16
 
 
17
     text_label = this.pack_text ();
 
18
-    var image = new Image.from_icon_name ("preferences-system-date-and-time-symbolic", IconSize.MENU);
 
19
+    var image = new Image.from_icon_name ("preferences-system-time-symbolic", IconSize.MENU);
 
20
     image.get_style_context ().add_class ("dim-label");
 
21
     var button = new Button();
 
22
     button.set_relief (ReliefStyle.NONE);