fix for crash on 64 bit platforms (patch 1028942)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -258,6 +258,7 @@ wxGTK:
|
||||
- implemented alpha channel support in wxBitmap
|
||||
- added native GTK+2 wxArtProvider implementation with ability to load
|
||||
icons from icon theme in addition to recognized stock art
|
||||
- fixed crash on 64 bit platforms (Paul Cornett)
|
||||
|
||||
wxMotif:
|
||||
|
||||
|
@@ -82,7 +82,7 @@ struct _GtkPizzaClass
|
||||
GtkAdjustment *vadjustment);
|
||||
};
|
||||
|
||||
guint gtk_pizza_get_type (void);
|
||||
GtkType gtk_pizza_get_type (void);
|
||||
GtkWidget* gtk_pizza_new (void);
|
||||
|
||||
void gtk_pizza_set_shadow_type (GtkPizza *pizza,
|
||||
|
@@ -82,7 +82,7 @@ struct _GtkPizzaClass
|
||||
GtkAdjustment *vadjustment);
|
||||
};
|
||||
|
||||
guint gtk_pizza_get_type (void);
|
||||
GtkType gtk_pizza_get_type (void);
|
||||
GtkWidget* gtk_pizza_new (void);
|
||||
|
||||
void gtk_pizza_set_shadow_type (GtkPizza *pizza,
|
||||
|
@@ -104,10 +104,10 @@ static GtkContainerClass *pizza_parent_class = NULL;
|
||||
|
||||
static gboolean gravity_works;
|
||||
|
||||
guint
|
||||
GtkType
|
||||
gtk_pizza_get_type ()
|
||||
{
|
||||
static guint pizza_type = 0;
|
||||
static GtkType pizza_type = 0;
|
||||
|
||||
if (!pizza_type)
|
||||
{
|
||||
|
@@ -104,10 +104,10 @@ static GtkContainerClass *pizza_parent_class = NULL;
|
||||
|
||||
static gboolean gravity_works;
|
||||
|
||||
guint
|
||||
GtkType
|
||||
gtk_pizza_get_type ()
|
||||
{
|
||||
static guint pizza_type = 0;
|
||||
static GtkType pizza_type = 0;
|
||||
|
||||
if (!pizza_type)
|
||||
{
|
||||
|
Reference in New Issue
Block a user