events return gboolean not gint, reindented static prototypes.
2008-09-24 Michael Natterer <mitch@imendio.com> * gtk/gtkeventbox.c: events return gboolean not gint, reindented static prototypes. svn path=/trunk/; revision=21513
This commit is contained in:

committed by
Michael Natterer

parent
5fcfc7a368
commit
eed535d6b2
@ -1,3 +1,8 @@
|
|||||||
|
2008-09-24 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* gtk/gtkeventbox.c: events return gboolean not gint, reindented
|
||||||
|
static prototypes.
|
||||||
|
|
||||||
2008-09-24 Johan Dahlin <johan@gnome.org>
|
2008-09-24 Johan Dahlin <johan@gnome.org>
|
||||||
|
|
||||||
Bug 553385 – gtk-builder-convert creates untranslated combobox models
|
Bug 553385 – gtk-builder-convert creates untranslated combobox models
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
||||||
* file for a list of people on the GTK+ Team. See the ChangeLog
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
||||||
* files for a list of changes. These files are distributed with
|
* files for a list of changes. These files are distributed with
|
||||||
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -30,7 +30,7 @@
|
|||||||
#include "gtkintl.h"
|
#include "gtkintl.h"
|
||||||
#include "gtkalias.h"
|
#include "gtkalias.h"
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
gboolean above_child;
|
gboolean above_child;
|
||||||
GdkWindow *event_window;
|
GdkWindow *event_window;
|
||||||
@ -45,26 +45,26 @@ enum {
|
|||||||
|
|
||||||
#define GTK_EVENT_BOX_GET_PRIVATE(obj) G_TYPE_INSTANCE_GET_PRIVATE((obj), GTK_TYPE_EVENT_BOX, GtkEventBoxPrivate)
|
#define GTK_EVENT_BOX_GET_PRIVATE(obj) G_TYPE_INSTANCE_GET_PRIVATE((obj), GTK_TYPE_EVENT_BOX, GtkEventBoxPrivate)
|
||||||
|
|
||||||
static void gtk_event_box_realize (GtkWidget *widget);
|
static void gtk_event_box_realize (GtkWidget *widget);
|
||||||
static void gtk_event_box_unrealize (GtkWidget *widget);
|
static void gtk_event_box_unrealize (GtkWidget *widget);
|
||||||
static void gtk_event_box_map (GtkWidget *widget);
|
static void gtk_event_box_map (GtkWidget *widget);
|
||||||
static void gtk_event_box_unmap (GtkWidget *widget);
|
static void gtk_event_box_unmap (GtkWidget *widget);
|
||||||
static void gtk_event_box_size_request (GtkWidget *widget,
|
static void gtk_event_box_size_request (GtkWidget *widget,
|
||||||
GtkRequisition *requisition);
|
GtkRequisition *requisition);
|
||||||
static void gtk_event_box_size_allocate (GtkWidget *widget,
|
static void gtk_event_box_size_allocate (GtkWidget *widget,
|
||||||
GtkAllocation *allocation);
|
GtkAllocation *allocation);
|
||||||
static void gtk_event_box_paint (GtkWidget *widget,
|
static void gtk_event_box_paint (GtkWidget *widget,
|
||||||
GdkRectangle *area);
|
GdkRectangle *area);
|
||||||
static gint gtk_event_box_expose (GtkWidget *widget,
|
static gboolean gtk_event_box_expose (GtkWidget *widget,
|
||||||
GdkEventExpose *event);
|
GdkEventExpose *event);
|
||||||
static void gtk_event_box_set_property (GObject *object,
|
static void gtk_event_box_set_property (GObject *object,
|
||||||
guint prop_id,
|
guint prop_id,
|
||||||
const GValue *value,
|
const GValue *value,
|
||||||
GParamSpec *pspec);
|
GParamSpec *pspec);
|
||||||
static void gtk_event_box_get_property (GObject *object,
|
static void gtk_event_box_get_property (GObject *object,
|
||||||
guint prop_id,
|
guint prop_id,
|
||||||
GValue *value,
|
GValue *value,
|
||||||
GParamSpec *pspec);
|
GParamSpec *pspec);
|
||||||
|
|
||||||
G_DEFINE_TYPE (GtkEventBox, gtk_event_box, GTK_TYPE_BIN)
|
G_DEFINE_TYPE (GtkEventBox, gtk_event_box, GTK_TYPE_BIN)
|
||||||
|
|
||||||
@ -562,7 +562,7 @@ gtk_event_box_paint (GtkWidget *widget,
|
|||||||
0, 0, -1, -1);
|
0, 0, -1, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static gint
|
static gboolean
|
||||||
gtk_event_box_expose (GtkWidget *widget,
|
gtk_event_box_expose (GtkWidget *widget,
|
||||||
GdkEventExpose *event)
|
GdkEventExpose *event)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user