forked from AuroraMiddleware/gtk
iconset: Remove stray references
This commit is contained in:
parent
723b4af529
commit
2273f5d28e
@ -233,7 +233,6 @@ static gchar *types[] =
|
|||||||
"GtkActionEntry ",
|
"GtkActionEntry ",
|
||||||
"GtkRadioActionEntry ",
|
"GtkRadioActionEntry ",
|
||||||
"GtkIconFactory ",
|
"GtkIconFactory ",
|
||||||
"GtkIconSet ",
|
|
||||||
"GtkTextBuffer ",
|
"GtkTextBuffer ",
|
||||||
"GtkStatusbar ",
|
"GtkStatusbar ",
|
||||||
"GtkTextIter ",
|
"GtkTextIter ",
|
||||||
|
@ -1689,7 +1689,6 @@ GTK_IMAGE_GET_CLASS
|
|||||||
<SUBSECTION Private>
|
<SUBSECTION Private>
|
||||||
GtkImagePrivate
|
GtkImagePrivate
|
||||||
gtk_image_get_type
|
gtk_image_get_type
|
||||||
GtkImageIconSetData
|
|
||||||
GtkImagePixbufData
|
GtkImagePixbufData
|
||||||
GtkImageAnimationData
|
GtkImageAnimationData
|
||||||
GtkImageIconNameData
|
GtkImageIconNameData
|
||||||
|
@ -279,7 +279,6 @@ gtk_image_accessible_get_image_size (AtkImage *image,
|
|||||||
*width = gdk_pixbuf_get_width (pixbuf);
|
*width = gdk_pixbuf_get_width (pixbuf);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GTK_IMAGE_ICON_SET:
|
|
||||||
case GTK_IMAGE_ICON_NAME:
|
case GTK_IMAGE_ICON_NAME:
|
||||||
case GTK_IMAGE_GICON:
|
case GTK_IMAGE_GICON:
|
||||||
{
|
{
|
||||||
|
@ -52,7 +52,6 @@ typedef struct _GtkImageClass GtkImageClass;
|
|||||||
* GtkImageType:
|
* GtkImageType:
|
||||||
* @GTK_IMAGE_EMPTY: there is no image displayed by the widget
|
* @GTK_IMAGE_EMPTY: there is no image displayed by the widget
|
||||||
* @GTK_IMAGE_PIXBUF: the widget contains a #GdkPixbuf
|
* @GTK_IMAGE_PIXBUF: the widget contains a #GdkPixbuf
|
||||||
* @GTK_IMAGE_ICON_SET: the widget contains a #GtkIconSet
|
|
||||||
* @GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation
|
* @GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation
|
||||||
* @GTK_IMAGE_ICON_NAME: the widget contains a named icon.
|
* @GTK_IMAGE_ICON_NAME: the widget contains a named icon.
|
||||||
* This image type was added in GTK+ 2.6
|
* This image type was added in GTK+ 2.6
|
||||||
@ -73,7 +72,6 @@ typedef enum
|
|||||||
{
|
{
|
||||||
GTK_IMAGE_EMPTY,
|
GTK_IMAGE_EMPTY,
|
||||||
GTK_IMAGE_PIXBUF,
|
GTK_IMAGE_PIXBUF,
|
||||||
GTK_IMAGE_ICON_SET,
|
|
||||||
GTK_IMAGE_ANIMATION,
|
GTK_IMAGE_ANIMATION,
|
||||||
GTK_IMAGE_ICON_NAME,
|
GTK_IMAGE_ICON_NAME,
|
||||||
GTK_IMAGE_GICON,
|
GTK_IMAGE_GICON,
|
||||||
|
@ -34,7 +34,6 @@ G_BEGIN_DECLS
|
|||||||
typedef struct _GtkAdjustment GtkAdjustment;
|
typedef struct _GtkAdjustment GtkAdjustment;
|
||||||
typedef struct _GtkBuilder GtkBuilder;
|
typedef struct _GtkBuilder GtkBuilder;
|
||||||
typedef struct _GtkClipboard GtkClipboard;
|
typedef struct _GtkClipboard GtkClipboard;
|
||||||
typedef struct _GtkIconSet GtkIconSet;
|
|
||||||
typedef struct _GtkIconSource GtkIconSource;
|
typedef struct _GtkIconSource GtkIconSource;
|
||||||
typedef struct _GtkRequisition GtkRequisition;
|
typedef struct _GtkRequisition GtkRequisition;
|
||||||
typedef struct _GtkSelectionData GtkSelectionData;
|
typedef struct _GtkSelectionData GtkSelectionData;
|
||||||
|
@ -35,16 +35,6 @@ void signal_second (GtkButton *button, GParamSpec *spec);
|
|||||||
void signal_extra (GtkButton *button, GParamSpec *spec);
|
void signal_extra (GtkButton *button, GParamSpec *spec);
|
||||||
void signal_extra2 (GtkButton *button, GParamSpec *spec);
|
void signal_extra2 (GtkButton *button, GParamSpec *spec);
|
||||||
|
|
||||||
/* Copied from gtkiconfactory.c; keep in sync! */
|
|
||||||
struct _GtkIconSet
|
|
||||||
{
|
|
||||||
guint ref_count;
|
|
||||||
GSList *sources;
|
|
||||||
GSList *cache;
|
|
||||||
guint cache_size;
|
|
||||||
guint cache_serial;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
static GtkBuilder *
|
static GtkBuilder *
|
||||||
builder_new_from_string (const gchar *buffer,
|
builder_new_from_string (const gchar *buffer,
|
||||||
|
Loading…
Reference in New Issue
Block a user