forked from AuroraMiddleware/gtk
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:
parent
66aa931ee9
commit
224cfe0763
@ -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>
|
||||
|
||||
* gdk/gdkkeyuni.c: Map KP_Separator to ','.
|
||||
|
@ -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>
|
||||
|
||||
* gdk/gdkkeyuni.c: Map KP_Separator to ','.
|
||||
|
@ -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>
|
||||
|
||||
* gdk/gdkkeyuni.c: Map KP_Separator to ','.
|
||||
|
@ -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>
|
||||
|
||||
* gdk/gdkkeyuni.c: Map KP_Separator to ','.
|
||||
|
@ -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>
|
||||
|
||||
* gdk/gdkkeyuni.c: Map KP_Separator to ','.
|
||||
|
@ -71,9 +71,9 @@ struct _GtkIconThemeClass
|
||||
**/
|
||||
typedef enum
|
||||
{
|
||||
GTK_ICON_LOOKUP_NO_SVG = 0 << 0,
|
||||
GTK_ICON_LOOKUP_FORCE_SVG = 0 << 1,
|
||||
GTK_ICON_LOOKUP_USE_BUILTIN = 0 << 2
|
||||
GTK_ICON_LOOKUP_NO_SVG = 1 << 0,
|
||||
GTK_ICON_LOOKUP_FORCE_SVG = 1 << 1,
|
||||
GTK_ICON_LOOKUP_USE_BUILTIN = 1 << 2
|
||||
} GtkIconLookupFlags;
|
||||
|
||||
#define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()
|
||||
|
Loading…
Reference in New Issue
Block a user