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

Collapse All | Expand All

(-)a/panel-plugin/model.h (-10 / +9 lines)
Lines 36-48 struct _PlacesBookmarkAction Link Here
36
    void        (*finalize) (PlacesBookmarkAction *self);
36
    void        (*finalize) (PlacesBookmarkAction *self);
37
};
37
};
38
38
39
inline PlacesBookmarkAction*
39
extern inline PlacesBookmarkAction*
40
places_bookmark_action_create(gchar *label);
40
places_bookmark_action_create(gchar *label);
41
41
42
inline void
42
extern inline void
43
places_bookmark_action_destroy(PlacesBookmarkAction*);
43
places_bookmark_action_destroy(PlacesBookmarkAction*);
44
44
45
inline void
45
extern inline void
46
places_bookmark_action_call(PlacesBookmarkAction*);
46
places_bookmark_action_call(PlacesBookmarkAction*);
47
47
48
/* Places Bookmark */
48
/* Places Bookmark */
Lines 70-79 struct _PlacesBookmark Link Here
70
    void                 (*finalize) (PlacesBookmark *self);
70
    void                 (*finalize) (PlacesBookmark *self);
71
};
71
};
72
72
73
inline PlacesBookmark*
73
extern inline PlacesBookmark*
74
places_bookmark_create(gchar *label);
74
places_bookmark_create(gchar *label);
75
75
76
inline void
76
extern inline void
77
places_bookmark_destroy(PlacesBookmark *bookmark);
77
places_bookmark_destroy(PlacesBookmark *bookmark);
78
78
79
/* Places Bookmark Group */
79
/* Places Bookmark Group */
Lines 86-101 struct _PlacesBookmarkGroup Link Here
86
    gpointer    priv;
86
    gpointer    priv;
87
};
87
};
88
88
89
inline GList*
89
extern inline GList*
90
places_bookmark_group_get_bookmarks(PlacesBookmarkGroup*);
90
places_bookmark_group_get_bookmarks(PlacesBookmarkGroup*);
91
91
92
inline gboolean
92
extern inline gboolean
93
places_bookmark_group_changed(PlacesBookmarkGroup*);
93
places_bookmark_group_changed(PlacesBookmarkGroup*);
94
94
95
inline PlacesBookmarkGroup*
95
extern inline PlacesBookmarkGroup*
96
places_bookmark_group_create();
96
places_bookmark_group_create();
97
97
98
inline void
98
extern inline void
99
places_bookmark_group_destroy(PlacesBookmarkGroup*);
99
places_bookmark_group_destroy(PlacesBookmarkGroup*);
100
100
101
#endif
101
#endif
102
- 

Return to bug 608228