summaryrefslogtreecommitdiff
path: root/gtk/gtkcelleditable.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-05-04 03:16:28 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-05-04 03:16:28 +0000
commit00dd821a5a738981b20662bc2a0a0f26f32b94e9 (patch)
tree89361c4c8d2114dbf8312079123269311868ac65 /gtk/gtkcelleditable.c
parent2c5634dad18a75ffc16b0653b662193d48b7de3c (diff)
downloadgtk+-00dd821a5a738981b20662bc2a0a0f26f32b94e9.tar.gz
Avoid getting the interface struct twice in the same function. (#300513,
2005-05-03 Matthias Clasen <mclasen@redhat.com> * gtk/gtkfilesystem.c: * gtk/gtkcelleditable.c: * gtk/gtktreemodel.c: Avoid getting the interface struct twice in the same function. (#300513, Billy Biggs)
Diffstat (limited to 'gtk/gtkcelleditable.c')
-rw-r--r--gtk/gtkcelleditable.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkcelleditable.c b/gtk/gtkcelleditable.c
index 8df3351355..f186123405 100644
--- a/gtk/gtkcelleditable.c
+++ b/gtk/gtkcelleditable.c
@@ -94,7 +94,6 @@ gtk_cell_editable_start_editing (GtkCellEditable *cell_editable,
GdkEvent *event)
{
g_return_if_fail (GTK_IS_CELL_EDITABLE (cell_editable));
- g_return_if_fail (GTK_CELL_EDITABLE_GET_IFACE (cell_editable)->start_editing != NULL);
(* GTK_CELL_EDITABLE_GET_IFACE (cell_editable)->start_editing) (cell_editable, event);
}