Skip to content
Snippets Groups Projects
Commit 35df50c2 authored by Benedikt Meurer's avatar Benedikt Meurer
Browse files

2005-06-25 Benedikt Meurer <benny@xfce.org>

	* thunar/thunar-navigator.c(thunar_navigator_get_type): Do not require
	  derived classes to inherit GtkWidget. This enables us to let arbitrary
	  classes implement the ThunarNavigator interface and therefore reduce
	  the amount of hardcoded knowledge in ThunarWindow.
	* thunar/thunar-side-pane.c(thunar_side_pane_get_type): Require derived
	  classes to inhert GtkWidget.




(Old svn revision: 16355)
parent cd6a9d98
No related branches found
No related tags found
No related merge requests found
2005-06-25 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-navigator.c(thunar_navigator_get_type): Do not require
derived classes to inherit GtkWidget. This enables us to let arbitrary
classes implement the ThunarNavigator interface and therefore reduce
the amount of hardcoded knowledge in ThunarWindow.
* thunar/thunar-side-pane.c(thunar_side_pane_get_type): Require derived
classes to inhert GtkWidget.
2005-06-25 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-details-view.c(thunar_details_view_init): Use a
......
......@@ -65,8 +65,6 @@ thunar_navigator_get_type (void)
type = g_type_register_static (G_TYPE_INTERFACE,
"ThunarNavigator",
&info, 0);
g_type_interface_add_prerequisite (type, GTK_TYPE_WIDGET);
}
return type;
......
......@@ -49,6 +49,7 @@ thunar_side_pane_get_type (void)
"ThunarSidePane",
&info, 0);
g_type_interface_add_prerequisite (type, GTK_TYPE_WIDGET);
g_type_interface_add_prerequisite (type, THUNAR_TYPE_NAVIGATOR);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment