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

« back to all changes in this revision

Viewing changes to src/hooks.h

  • Committer: Julian Andres Klode
  • Date: 2020-01-28 09:54:52 UTC
  • Revision ID: juliank@ubuntu.com-20200128095452-g0q3a1xg75a7k56j
Replace pep8 with pycodestyle

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
 
5
5
 
6
 
gboolean check_update_hooks(TrayApplet *un);
7
 
void hook_tray_icon_init(TrayApplet *un);
 
6
gboolean check_update_hooks(TrayApplet *ta);
 
7
void hook_tray_icon_init(TrayApplet *ta);
8
8
 
9
9
 
10
10
 
22
22
typedef struct _HookTrayAppletPrivate HookTrayAppletPrivate;
23
23
struct _HookTrayAppletPrivate
24
24
{
25
 
   GtkBuilder *gtk_builder;
 
25
   GtkWidget *dialog_hooks;
 
26
   GtkWidget *label_title;
 
27
   GtkWidget *textview_hook;
 
28
   GtkWidget *button_next;
 
29
   GtkWidget *button_run;
26
30
 
27
31
   // the list of all hook files
28
32
   GList *hook_files;