gtkaccellabel: Remove unused class members
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=97414
This commit is contained in:
parent
61e34032ec
commit
f760538f17
@ -180,9 +180,6 @@ gtk_accel_label_class_init (GtkAccelLabelClass *class)
|
|||||||
|
|
||||||
#endif /* GDK_WINDOWING_QUARTZ */
|
#endif /* GDK_WINDOWING_QUARTZ */
|
||||||
|
|
||||||
class->accel_seperator = g_strdup (" / ");
|
|
||||||
class->latin1_to_char = TRUE;
|
|
||||||
|
|
||||||
g_object_class_install_property (gobject_class,
|
g_object_class_install_property (gobject_class,
|
||||||
PROP_ACCEL_CLOSURE,
|
PROP_ACCEL_CLOSURE,
|
||||||
g_param_spec_boxed ("accel-closure",
|
g_param_spec_boxed ("accel-closure",
|
||||||
@ -802,8 +799,7 @@ _gtk_accel_label_class_get_accelerator_label (GtkAccelLabelClass *klass,
|
|||||||
g_string_append (gstring, klass->mod_separator);
|
g_string_append (gstring, klass->mod_separator);
|
||||||
|
|
||||||
ch = gdk_keyval_to_unicode (accelerator_key);
|
ch = gdk_keyval_to_unicode (accelerator_key);
|
||||||
if (ch && (g_unichar_isgraph (ch) || ch == ' ') &&
|
if (ch && ch < 0x80 && (g_unichar_isgraph (ch) || ch == ' '))
|
||||||
(ch < 0x80 || klass->latin1_to_char))
|
|
||||||
{
|
{
|
||||||
switch (ch)
|
switch (ch)
|
||||||
{
|
{
|
||||||
|
@ -74,9 +74,7 @@ struct _GtkAccelLabelClass
|
|||||||
gchar *mod_name_control;
|
gchar *mod_name_control;
|
||||||
gchar *mod_name_alt;
|
gchar *mod_name_alt;
|
||||||
gchar *mod_separator;
|
gchar *mod_separator;
|
||||||
gchar *accel_seperator;
|
|
||||||
guint latin1_to_char : 1;
|
|
||||||
|
|
||||||
/* Padding for future expansion */
|
/* Padding for future expansion */
|
||||||
void (*_gtk_reserved1) (void);
|
void (*_gtk_reserved1) (void);
|
||||||
void (*_gtk_reserved2) (void);
|
void (*_gtk_reserved2) (void);
|
||||||
|
Loading…
Reference in New Issue
Block a user