[gnome-contacts] app: consistently use GdNotification



commit 437a84ff5ca511d94e7c69a27357b7d219c46ee2
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Thu Feb 7 09:22:24 2013 -0500

    app: consistently use GdNotification
    
    Always use the notification widget from libgd instead of our own
    internal copy.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=693330

 libgd                 |    2 +-
 src/contacts-app.vala |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/libgd b/libgd
index ee7333b..3b110dd 160000
--- a/libgd
+++ b/libgd
@@ -1 +1 @@
-Subproject commit ee7333b87b57d9c5f0ff614c11e43bd37d6a30ce
+Subproject commit 3b110dd27b65e5dc6591bfcbbf1799f549ce0d34
diff --git a/src/contacts-app.vala b/src/contacts-app.vala
index 9a63483..9ef674a 100644
--- a/src/contacts-app.vala
+++ b/src/contacts-app.vala
@@ -447,7 +447,7 @@ public class Contacts.App : Gtk.Application {
   }
 
   public void show_message (string message) {
-    var notification = new Gtk.Notification ();
+    var notification = new Gd.Notification ();
 
     var g = new Grid ();
     g.set_column_spacing (8);
@@ -508,7 +508,7 @@ public class Contacts.App : Gtk.Application {
     done_button.hide ();
     contacts_pane.set_edit_mode (false);
 
-    var notification = new Gtk.Notification ();
+    var notification = new Gd.Notification ();
 
     var g = new Grid ();
     g.set_column_spacing (8);
@@ -547,7 +547,7 @@ public class Contacts.App : Gtk.Application {
   };
 
   private void contacts_linked (string? main_contact, string linked_contact, LinkOperation operation) {
-    var notification = new Gtk.Notification ();
+    var notification = new Gd.Notification ();
 
     var g = new Grid ();
     g.set_column_spacing (8);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]