aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets/ephy-tree-model-sort.h
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@gnome.org>2009-12-02 10:05:24 +0800
committerDiego Escalante Urrelo <diegoe@gnome.org>2009-12-03 06:47:16 +0800
commitac9f536fb83161b88678575ce6250c1cf5f8b176 (patch)
tree50060d3f3c6652899c6945aaac3e5ec714b55731 /lib/widgets/ephy-tree-model-sort.h
parentc2159119d0ceb1790984e1ccd6e2bdcb53daafa7 (diff)
downloadgsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.tar
gsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.tar.gz
gsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.tar.bz2
gsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.tar.lz
gsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.tar.xz
gsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.tar.zst
gsoc2013-epiphany-ac9f536fb83161b88678575ce6250c1cf5f8b176.zip
docs: ephy-tree-model-sort
Also disable incomplete documentation. Bug #503852
Diffstat (limited to 'lib/widgets/ephy-tree-model-sort.h')
-rw-r--r--lib/widgets/ephy-tree-model-sort.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/widgets/ephy-tree-model-sort.h b/lib/widgets/ephy-tree-model-sort.h
index a21f31b87..4044704ee 100644
--- a/lib/widgets/ephy-tree-model-sort.h
+++ b/lib/widgets/ephy-tree-model-sort.h
@@ -36,22 +36,24 @@ G_BEGIN_DECLS
#define EPHY_IS_TREE_MODEL_SORT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_TREE_MODEL_SORT))
#define EPHY_TREE_MODEL_SORT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_TREE_MODEL_SORT, EphyTreeModelSortClass))
+typedef struct _EphyTreeModelSort EphyTreeModelSort;
+typedef struct _EphyTreeModelSortClass EphyTreeModelSortClass;
typedef struct _EphyTreeModelSortPrivate EphyTreeModelSortPrivate;
-typedef struct
+struct _EphyTreeModelSort
{
GtkTreeModelSort parent;
/*< private >*/
EphyTreeModelSortPrivate *priv;
-} EphyTreeModelSort;
+};
-typedef struct
+struct _EphyTreeModelSortClass
{
GtkTreeModelSortClass parent_class;
void (*node_from_iter) (EphyTreeModelSort *model, GtkTreeIter *iter, void **node);
-} EphyTreeModelSortClass;
+};
GType ephy_tree_model_sort_get_type (void);