make_initialization_status_window(): reverse logic for if(!no_interface &&
2000-08-09 Michael Natterer <mitch@gimp.org> * app/app_procs.c: make_initialization_status_window(): reverse logic for if(!no_interface && !no_splash) * app/palette.[ch]: removed declarations of the two removed functions. One more s/gint/gboolean/. * libgimp/gimpfileselection.[ch] * libgimp/gimppixmap.[ch]: some consistency fixes (mostly fanatic :) * libgimp/gimpproceduraldb.c: fixed a compiler warning.
This commit is contained in:
committed by
Michael Natterer
parent
54f2d978fd
commit
84e80a7fc9
@ -332,7 +332,7 @@ gimp_file_selection_entry_callback (GtkWidget *widget,
|
||||
gimp_file_selection_signals[FILENAME_CHANGED]);
|
||||
}
|
||||
|
||||
static int
|
||||
static gboolean
|
||||
gimp_file_selection_entry_focus_out_callback (GtkWidget *widget,
|
||||
GdkEvent *event,
|
||||
gpointer data)
|
||||
|
||||
@ -66,7 +66,6 @@ struct _GimpFileSelectionClass
|
||||
void (* filename_changed) (GimpFileSelection *gfs);
|
||||
};
|
||||
|
||||
/* For information look into the C source or the html documentation */
|
||||
|
||||
GtkType gimp_file_selection_get_type (void);
|
||||
|
||||
|
||||
@ -332,7 +332,7 @@ gimp_file_selection_entry_callback (GtkWidget *widget,
|
||||
gimp_file_selection_signals[FILENAME_CHANGED]);
|
||||
}
|
||||
|
||||
static int
|
||||
static gboolean
|
||||
gimp_file_selection_entry_focus_out_callback (GtkWidget *widget,
|
||||
GdkEvent *event,
|
||||
gpointer data)
|
||||
|
||||
@ -66,7 +66,6 @@ struct _GimpFileSelectionClass
|
||||
void (* filename_changed) (GimpFileSelection *gfs);
|
||||
};
|
||||
|
||||
/* For information look into the C source or the html documentation */
|
||||
|
||||
GtkType gimp_file_selection_get_type (void);
|
||||
|
||||
|
||||
@ -27,13 +27,6 @@
|
||||
#include "gimppixmap.h"
|
||||
|
||||
|
||||
struct _GimpPixmap
|
||||
{
|
||||
GtkPixmap pixmap;
|
||||
|
||||
gchar **xpm_data;
|
||||
};
|
||||
|
||||
static void gimp_pixmap_destroy (GtkObject *object);
|
||||
static void gimp_pixmap_realize (GtkWidget *widget);
|
||||
static void gimp_pixmap_create_from_xpm_d (GimpPixmap *pixmap);
|
||||
@ -57,7 +50,7 @@ gimp_pixmap_class_init (GimpPixmapClass *class)
|
||||
GtkObjectClass *object_class;
|
||||
GtkWidgetClass *widget_class;
|
||||
|
||||
object_class = (GtkObjectClass*) class;
|
||||
object_class = (GtkObjectClass *) class;
|
||||
widget_class = (GtkWidgetClass *) class;
|
||||
|
||||
parent_class = gtk_type_class (gtk_pixmap_get_type ());
|
||||
|
||||
@ -39,6 +39,13 @@ extern "C" {
|
||||
typedef struct _GimpPixmap GimpPixmap;
|
||||
typedef struct _GimpPixmapClass GimpPixmapClass;
|
||||
|
||||
struct _GimpPixmap
|
||||
{
|
||||
GtkPixmap pixmap;
|
||||
|
||||
gchar **xpm_data;
|
||||
};
|
||||
|
||||
struct _GimpPixmapClass
|
||||
{
|
||||
GtkPixmapClass parent_class;
|
||||
|
||||
Reference in New Issue
Block a user