Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
99a54565
Commit
99a54565
authored
Jun 25, 2011
by
Matthias Clasen
Browse files
Purge traces of insert idle handler
parent
212241ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
gtk/a11y/gtkentryaccessible.c
View file @
99a54565
...
...
@@ -77,11 +77,6 @@ gtk_entry_accessible_finalize (GObject *object)
g_source_remove
(
entry
->
action_idle_handler
);
entry
->
action_idle_handler
=
0
;
}
if
(
entry
->
insert_idle_handler
)
{
g_source_remove
(
entry
->
insert_idle_handler
);
entry
->
insert_idle_handler
=
0
;
}
G_OBJECT_CLASS
(
gtk_entry_accessible_parent_class
)
->
finalize
(
object
);
}
...
...
@@ -213,14 +208,6 @@ gtk_entry_accessible_notify_gtk (GObject *obj,
else
if
(
strcmp
(
pspec
->
name
,
"invisible-char"
)
==
0
)
{
}
else
if
(
strcmp
(
pspec
->
name
,
"editing-canceled"
)
==
0
)
{
if
(
entry
->
insert_idle_handler
)
{
g_source_remove
(
entry
->
insert_idle_handler
);
entry
->
insert_idle_handler
=
0
;
}
}
else
GAIL_WIDGET_CLASS
(
gtk_entry_accessible_parent_class
)
->
notify_gtk
(
obj
,
pspec
);
}
...
...
gtk/a11y/gtkentryaccessible.h
View file @
99a54565
...
...
@@ -48,7 +48,6 @@ struct _GtkEntryAccessible
gchar
*
activate_keybinding
;
guint
action_idle_handler
;
guint
insert_idle_handler
;
};
GType
gtk_entry_accessible_get_type
(
void
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment