~ubuntu-branches/ubuntu/wily/gnome-software/wily-proposed

« back to all changes in this revision

Viewing changes to src/gs-shell-updates.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2015-07-22 00:03:04 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20150722000304-ctnkwytku720qft7
Tags: 3.16.4-1
* New upstream release.
* Update Build-Depends as per configure.ac:
  - Add appstream-util.
  - Add libpolkit-gobject-1-dev.
  - Bump libappstream-glib-dev to (>= 0.3.4).
  - Bump libgtk-3-dev to (>= 3.16).
* Drop hard-coded dependency on libappstream-glib7 now that the library
  provides a symbols file.
* Use dh_install's exclude (-X) functionality to not install the .a and .la
  files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <glib-object.h>
26
26
#include <gtk/gtk.h>
27
27
 
 
28
#include "gs-page.h"
28
29
#include "gs-shell.h"
29
30
#include "gs-plugin-loader.h"
30
31
 
41
42
 
42
43
typedef struct
43
44
{
44
 
         GtkBin                  parent;
 
45
         GsPage                  parent;
45
46
         GsShellUpdatesPrivate  *priv;
46
47
} GsShellUpdates;
47
48
 
48
49
typedef struct
49
50
{
50
 
        GtkBinClass              parent_class;
 
51
        GsPageClass              parent_class;
51
52
} GsShellUpdatesClass;
52
53
 
53
54
GType            gs_shell_updates_get_type      (void);