~ubuntu-branches/ubuntu/vivid/liferea/vivid-proposed

« back to all changes in this revision

Viewing changes to src/notification/libnotify.c

  • Committer: Package Import Robot
  • Author(s): Maia Kozheva
  • Date: 2011-06-07 19:52:56 UTC
  • Revision ID: package-import@ubuntu.com-20110607195256-lvmlr9q2hp3o95re
* debian/patches/notification-append:
  - Apply libnotify 0.7 API change, fixes FTBFS. (LP: #794010)
* Rebuild to correctly update connected state with Network Manager 0.9.
  (LP: #791548)

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
//              notify_notification_update ( n, node_get_title(node_p), labelText_now_p, NULL);
152
152
//              notify_notification_clear_actions(n);
153
153
 
154
 
                n = notify_notification_new (node_get_title(node_p), labelText_now_p, NULL, NULL);
 
154
                n = notify_notification_new (node_get_title(node_p), labelText_now_p, NULL);
155
155
 
156
156
                notify_notification_set_icon_from_pixbuf (n,node_get_icon(node_p));
157
157
 
249
249
 
250
250
        labelSummary_p = g_strdup_printf (ngettext ("<b>%s</b> has <b>%d</b> update", "<b>%s</b> has <b>%d</b> updates", item_count), 
251
251
                                          node_get_title (node), item_count);
252
 
        n = notify_notification_new ( _("Feed Update"), labelSummary_p, "liferea", NULL);
 
252
        n = notify_notification_new ( _("Feed Update"), labelSummary_p, "liferea");
253
253
        g_free(labelSummary_p);
254
254
 
255
255
        if (supports_append) {