~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to src/update.h

  • Committer: Jeremy Bicha
  • Date: 2019-02-09 14:25:07 UTC
  • Revision ID: jbicha@ubuntu.com-20190209142507-45fc0sqnn4uqdl7j
Try adding gnome-shell as alternate dependency of notification-daemon

as part of an effort to drop notification-daemon to universe

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#include <libnotify/notify.h>
3
3
 
4
4
 
5
 
gboolean update_check(TrayApplet *un);
6
 
void update_tray_icon_init(TrayApplet *un);
 
5
gboolean update_check(TrayApplet *ta);
 
6
void update_tray_icon_init(TrayApplet *ta);
7
7
 
8
8
void update_apt_is_running(TrayApplet *ta, gboolean is_running);
9
9
 
10
10
typedef struct _UpdateTrayAppletPrivate UpdateTrayAppletPrivate;
11
11
struct _UpdateTrayAppletPrivate 
12
12
{
13
 
   GConfClient* gconf;
14
 
   // this is a permanent marker if apt is runing currently
 
13
   // this is a permanent marker if apt is running currently
15
14
   // (the difference to the one in update-notifier.h is that
16
15
   //  the one in here is "global" and not "per-timeslice" information
17
16
   gboolean apt_is_running;
19
18
   
20
19
   int num_upgrades;
21
20
   int num_security;
 
21
   gboolean reboot_pending;
22
22
};