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

« back to all changes in this revision

Viewing changes to src/gs-shell-details.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:
27
27
 
28
28
#include "gs-app.h"
29
29
#include "gs-shell.h"
 
30
#include "gs-page.h"
30
31
#include "gs-plugin-loader.h"
31
32
 
32
33
G_BEGIN_DECLS
42
43
 
43
44
typedef struct
44
45
{
45
 
         GtkBin                          parent;
 
46
         GsPage                          parent;
46
47
         GsShellDetailsPrivate          *priv;
47
48
} GsShellDetails;
48
49
 
49
50
typedef struct
50
51
{
51
 
        GtkBinClass                      parent_class;
 
52
        GsPageClass                      parent_class;
52
53
} GsShellDetailsClass;
53
54
 
54
55
GType            gs_shell_details_get_type      (void);