Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 227073 | Differences between
and this patch

Collapse All | Expand All

(-)f-spot-0.4.4~/libeog/image-view.h (-5 / +5 lines)
Lines 57-66 Link Here
57
57
58
58
59
#define TYPE_IMAGE_VIEW            (image_view_get_type ())
59
#define TYPE_IMAGE_VIEW            (image_view_get_type ())
60
#define IMAGE_VIEW(obj)            (GTK_CHECK_CAST ((obj), TYPE_IMAGE_VIEW, ImageView))
60
#define IMAGE_VIEW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_IMAGE_VIEW, ImageView))
61
#define IMAGE_VIEW_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), TYPE_IMAGE_VIEW, ImageViewClass))
61
#define IMAGE_VIEW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_IMAGE_VIEW, ImageViewClass))
62
#define IS_IMAGE_VIEW(obj)         (GTK_CHECK_TYPE ((obj), TYPE_IMAGE_VIEW))
62
#define IS_IMAGE_VIEW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_IMAGE_VIEW))
63
#define IS_IMAGE_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_IMAGE_VIEW))
63
#define IS_IMAGE_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_IMAGE_VIEW))
64
64
65
typedef struct _ImageView ImageView;
65
typedef struct _ImageView ImageView;
66
typedef struct _ImageViewClass ImageViewClass;
66
typedef struct _ImageViewClass ImageViewClass;
Lines 94-100 Link Here
94
#endif
94
#endif
95
};
95
};
96
96
97
GtkType image_view_get_type (void);
97
GType image_view_get_type (void);
98
98
99
GtkWidget *image_view_new (void);
99
GtkWidget *image_view_new (void);
100
100
(-)f-spot-0.4.4~/libeog/ui-image.c (-1 / +1 lines)
Lines 60-66 Link Here
60
 *
60
 *
61
 * Return value: the type ID of the #UIImage class.
61
 * Return value: the type ID of the #UIImage class.
62
 **/
62
 **/
63
GtkType
63
GType
64
ui_image_get_type (void)
64
ui_image_get_type (void)
65
{
65
{
66
	static GType ui_image_type = 0;
66
	static GType ui_image_type = 0;
(-)f-spot-0.4.4~/libeog/ui-image.h (-5 / +5 lines)
Lines 27-36 Link Here
27
G_BEGIN_DECLS
27
G_BEGIN_DECLS
28
28
29
#define TYPE_UI_IMAGE            (ui_image_get_type ())
29
#define TYPE_UI_IMAGE            (ui_image_get_type ())
30
#define UI_IMAGE(obj)            (GTK_CHECK_CAST ((obj), TYPE_UI_IMAGE, UIImage))
30
#define UI_IMAGE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_UI_IMAGE, UIImage))
31
#define UI_IMAGE_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), TYPE_UI_IMAGE, UIImageClass))
31
#define UI_IMAGE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_UI_IMAGE, UIImageClass))
32
#define IS_UI_IMAGE(obj)         (GTK_CHECK_TYPE ((obj), TYPE_UI_IMAGE))
32
#define IS_UI_IMAGE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_UI_IMAGE))
33
#define IS_UI_IMAGE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_UI_IMAGE))
33
#define IS_UI_IMAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_UI_IMAGE))
34
34
35
35
36
typedef struct _UIImage UIImage;
36
typedef struct _UIImage UIImage;
Lines 50-56 Link Here
50
};
50
};
51
51
52
52
53
GtkType ui_image_get_type (void);
53
GType ui_image_get_type (void);
54
54
55
GtkWidget *ui_image_new (void);
55
GtkWidget *ui_image_new (void);
56
GtkWidget *ui_image_construct (UIImage *ui);
56
GtkWidget *ui_image_construct (UIImage *ui);

Return to bug 227073