~ubuntu-branches/ubuntu/wily/gpaste/wily

« back to all changes in this revision

Viewing changes to src/libgpaste/settings-ui/gpaste-settings-ui-widget-private.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2015-06-19 11:05:16 UTC
  • mfrom: (6.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20150619110516-h53wz9xi9i4k3smb
Tags: 3.16.2.1-1
* Imported Upstream version 3.16.2.1 (Closes: #789255)
* gpaste-applet does not need a manpage - upstream dropped it
* Build-Depends gtk >= 3.16
* Depends gnome-shell >= 3.16
* Major API changes, bump soname to 3 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *      This file is part of GPaste.
3
 
 *
4
 
 *      Copyright 2013 Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
5
 
 *
6
 
 *      GPaste is free software: you can redistribute it and/or modify
7
 
 *      it under the terms of the GNU General Public License as published by
8
 
 *      the Free Software Foundation, either version 3 of the License, or
9
 
 *      (at your option) any later version.
10
 
 *
11
 
 *      GPaste is distributed in the hope that it will be useful,
12
 
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *      GNU General Public License for more details.
15
 
 *
16
 
 *      You should have received a copy of the GNU General Public License
17
 
 *      along with GPaste.  If not, see <http://www.gnu.org/licenses/>.
18
 
 */
19
 
 
20
 
#ifndef __G_PASTE_SETTINGS_UI_WIDGET_PRIVATE_H__
21
 
#define __G_PASTE_SETTINGS_UI_WIDGET_PRIVATE_H__
22
 
 
23
 
#include <gpaste-settings-ui-widget.h>
24
 
 
25
 
G_BEGIN_DECLS
26
 
 
27
 
typedef struct _GPasteSettingsUiWidgetPrivate GPasteSettingsUiWidgetPrivate;
28
 
 
29
 
struct _GPasteSettingsUiWidget
30
 
{
31
 
    GtkGrid parent_instance;
32
 
};
33
 
 
34
 
struct _GPasteSettingsUiWidgetClass
35
 
{
36
 
    GtkGridClass parent_class;
37
 
};
38
 
 
39
 
G_END_DECLS
40
 
 
41
 
#endif /*__G_PASTE_SETTINGS_UI_WIDGET_PRIVATE_H__*/