ports/editors/mlview/files/patch-src_mlview-tree-view.c
Simon Barner eea4bff25b - Change ${ECHO_CMD} to @${ECHO_CMD}
- Fix build with gcc 2.95. It was the good old "declare variables at the
  beginning of a {} block"-story again. *sigh*
2005-09-05 11:07:21 +00:00

23 lines
818 B
C

--- src/mlview-tree-view.c.orig Mon Sep 5 12:22:34 2005
+++ src/mlview-tree-view.c Mon Sep 5 12:24:10 2005
@@ -2628,15 +2628,17 @@
(GInstanceInitFunc)
mlview_tree_view_init
};
- type = g_type_register_static
- (MLVIEW_TYPE_VIEW_ADAPTER,
- "MlViewTreeView", &type_info, 0);
static const GInterfaceInfo iview_info = {
(GInterfaceInitFunc) mlview_tree_view_iview_init,
NULL,
NULL
} ;
+
+ type = g_type_register_static
+ (MLVIEW_TYPE_VIEW_ADAPTER,
+ "MlViewTreeView", &type_info, 0);
+
g_type_add_interface_static (type, MLVIEW_TYPE_IVIEW, &iview_info) ;
}
return type;