mirror of https://github.com/GNOME/gimp.git
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:
parent
9ee632a656
commit
bee928ebce
|
@ -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:
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
#include "core/gimpcontext.h"
|
||||
#include "core/gimpviewable.h"
|
||||
|
||||
#include "gimpcellrendererviewable.h"
|
||||
#include "gimpcontainertreeview.h"
|
||||
#include "gimpdnd.h"
|
||||
#include "gimppreview.h"
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue