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 ",
|
||||
"GtkRadioActionEntry ",
|
||||
"GtkIconFactory ",
|
||||
"GtkIconSet ",
|
||||
"GtkTextBuffer ",
|
||||
"GtkStatusbar ",
|
||||
"GtkTextIter ",
|
||||
|
@ -1689,7 +1689,6 @@ GTK_IMAGE_GET_CLASS
|
||||
<SUBSECTION Private>
|
||||
GtkImagePrivate
|
||||
gtk_image_get_type
|
||||
GtkImageIconSetData
|
||||
GtkImagePixbufData
|
||||
GtkImageAnimationData
|
||||
GtkImageIconNameData
|
||||
|
@ -279,7 +279,6 @@ gtk_image_accessible_get_image_size (AtkImage *image,
|
||||
*width = gdk_pixbuf_get_width (pixbuf);
|
||||
break;
|
||||
}
|
||||
case GTK_IMAGE_ICON_SET:
|
||||
case GTK_IMAGE_ICON_NAME:
|
||||
case GTK_IMAGE_GICON:
|
||||
{
|
||||
|
@ -52,7 +52,6 @@ typedef struct _GtkImageClass GtkImageClass;
|
||||
* GtkImageType:
|
||||
* @GTK_IMAGE_EMPTY: there is no image displayed by the widget
|
||||
* @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_ICON_NAME: the widget contains a named icon.
|
||||
* This image type was added in GTK+ 2.6
|
||||
@ -73,7 +72,6 @@ typedef enum
|
||||
{
|
||||
GTK_IMAGE_EMPTY,
|
||||
GTK_IMAGE_PIXBUF,
|
||||
GTK_IMAGE_ICON_SET,
|
||||
GTK_IMAGE_ANIMATION,
|
||||
GTK_IMAGE_ICON_NAME,
|
||||
GTK_IMAGE_GICON,
|
||||
|
@ -34,7 +34,6 @@ G_BEGIN_DECLS
|
||||
typedef struct _GtkAdjustment GtkAdjustment;
|
||||
typedef struct _GtkBuilder GtkBuilder;
|
||||
typedef struct _GtkClipboard GtkClipboard;
|
||||
typedef struct _GtkIconSet GtkIconSet;
|
||||
typedef struct _GtkIconSource GtkIconSource;
|
||||
typedef struct _GtkRequisition GtkRequisition;
|
||||
typedef struct _GtkSelectionData GtkSelectionData;
|
||||
|
@ -35,16 +35,6 @@ void signal_second (GtkButton *button, GParamSpec *spec);
|
||||
void signal_extra (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 *
|
||||
builder_new_from_string (const gchar *buffer,
|
||||
|
Loading…
Reference in New Issue
Block a user