[Xfce4-commits] [panel-plugins/xfce4-places-plugin] 01/01: Bug 11939: xfce4-places-plugin 1.7.0 crashes with undefined symbol
noreply at xfce.org
noreply at xfce.org
Tue Jul 7 23:26:59 CEST 2015
This is an automated email from the git hooks/post-receive script.
andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-places-plugin.
commit 94d583d0ba257cdc96cde5794ebb7d38001ae3a5
Author: Andrzej <ndrwrdck at gmail.com>
Date: Tue Jul 7 22:26:51 2015 +0100
Bug 11939: xfce4-places-plugin 1.7.0 crashes with undefined symbol
Patch from Fedora. Submitted by Kevin Fenzi.
---
panel-plugin/model.h | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/panel-plugin/model.h b/panel-plugin/model.h
index 06d9d6f..043e391 100644
--- a/panel-plugin/model.h
+++ b/panel-plugin/model.h
@@ -36,13 +36,13 @@ struct _PlacesBookmarkAction
void (*finalize) (PlacesBookmarkAction *self);
};
-inline PlacesBookmarkAction*
+extern inline PlacesBookmarkAction*
places_bookmark_action_create(gchar *label);
-inline void
+extern inline void
places_bookmark_action_destroy(PlacesBookmarkAction*);
-inline void
+extern inline void
places_bookmark_action_call(PlacesBookmarkAction*);
/* Places Bookmark */
@@ -70,10 +70,10 @@ struct _PlacesBookmark
void (*finalize) (PlacesBookmark *self);
};
-inline PlacesBookmark*
+extern inline PlacesBookmark*
places_bookmark_create(gchar *label);
-inline void
+extern inline void
places_bookmark_destroy(PlacesBookmark *bookmark);
/* Places Bookmark Group */
@@ -86,16 +86,16 @@ struct _PlacesBookmarkGroup
gpointer priv;
};
-inline GList*
+extern inline GList*
places_bookmark_group_get_bookmarks(PlacesBookmarkGroup*);
-inline gboolean
+extern inline gboolean
places_bookmark_group_changed(PlacesBookmarkGroup*);
-inline PlacesBookmarkGroup*
+extern inline PlacesBookmarkGroup*
places_bookmark_group_create();
-inline void
+extern inline void
places_bookmark_group_destroy(PlacesBookmarkGroup*);
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list