Correct the definition of the values. (#123361, Marco Pesenti Gritti)

Wed Nov 12 20:57:50 2003  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
	the definition of the values.  (#123361, Marco Pesenti Gritti)
This commit is contained in:
Matthias Clasen 2003-11-12 19:58:43 +00:00 committed by Matthias Clasen
parent 66aa931ee9
commit 224cfe0763
6 changed files with 28 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Wed Nov 12 20:57:50 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
the definition of the values. (#123361, Marco Pesenti Gritti)
Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de> Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de>
* gdk/gdkkeyuni.c: Map KP_Separator to ','. * gdk/gdkkeyuni.c: Map KP_Separator to ','.

View File

@ -1,3 +1,8 @@
Wed Nov 12 20:57:50 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
the definition of the values. (#123361, Marco Pesenti Gritti)
Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de> Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de>
* gdk/gdkkeyuni.c: Map KP_Separator to ','. * gdk/gdkkeyuni.c: Map KP_Separator to ','.

View File

@ -1,3 +1,8 @@
Wed Nov 12 20:57:50 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
the definition of the values. (#123361, Marco Pesenti Gritti)
Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de> Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de>
* gdk/gdkkeyuni.c: Map KP_Separator to ','. * gdk/gdkkeyuni.c: Map KP_Separator to ','.

View File

@ -1,3 +1,8 @@
Wed Nov 12 20:57:50 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
the definition of the values. (#123361, Marco Pesenti Gritti)
Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de> Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de>
* gdk/gdkkeyuni.c: Map KP_Separator to ','. * gdk/gdkkeyuni.c: Map KP_Separator to ','.

View File

@ -1,3 +1,8 @@
Wed Nov 12 20:57:50 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct
the definition of the values. (#123361, Marco Pesenti Gritti)
Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de> Wed Nov 12 20:54:02 2003 Matthias Clasen <maclas@gmx.de>
* gdk/gdkkeyuni.c: Map KP_Separator to ','. * gdk/gdkkeyuni.c: Map KP_Separator to ','.

View File

@ -71,9 +71,9 @@ struct _GtkIconThemeClass
**/ **/
typedef enum typedef enum
{ {
GTK_ICON_LOOKUP_NO_SVG = 0 << 0, GTK_ICON_LOOKUP_NO_SVG = 1 << 0,
GTK_ICON_LOOKUP_FORCE_SVG = 0 << 1, GTK_ICON_LOOKUP_FORCE_SVG = 1 << 1,
GTK_ICON_LOOKUP_USE_BUILTIN = 0 << 2 GTK_ICON_LOOKUP_USE_BUILTIN = 1 << 2
} GtkIconLookupFlags; } GtkIconLookupFlags;
#define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark () #define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()