added missing cast.

2003-02-21  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpviewabledialog.c: added missing cast.

	* app/widgets/gimpcontainertreeview.c: do not include a non-existant
	header file.
This commit is contained in:
Sven Neumann 2003-02-21 20:19:19 +00:00 committed by Sven Neumann
parent 9ee632a656
commit bee928ebce
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2003-02-21 Sven Neumann <sven@gimp.org>
* app/widgets/gimpviewabledialog.c: added missing cast.
* app/widgets/gimpcontainertreeview.c: do not include a non-existant
header file.
2003-02-21 Michael Natterer <mitch@gimp.org>
Started migration from GtkList to GtkTreeView:

View file

@ -31,7 +31,6 @@
#include "core/gimpcontext.h"
#include "core/gimpviewable.h"
#include "gimpcellrendererviewable.h"
#include "gimpcontainertreeview.h"
#include "gimpdnd.h"
#include "gimppreview.h"

View file

@ -302,7 +302,7 @@ gimp_viewable_dialog_name_changed (GimpObject *object,
if (get_name_func && dialog->preview)
{
name = get_name_func (dialog->preview, NULL);
name = get_name_func (G_OBJECT (dialog->preview), NULL);
}
else
{