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:
Michael Natterer
2000-08-09 17:04:16 +00:00
committed by Michael Natterer
parent 54f2d978fd
commit 84e80a7fc9
19 changed files with 115 additions and 117 deletions

View File

@ -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)

View File

@ -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);

View File

@ -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)

View File

@ -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);

View File

@ -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 ());

View File

@ -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;