forked from AuroraMiddleware/gtk
Don't return a value from a void function.
2006-01-05 Matthias Clasen <mclasen@redhat.com> * gtk/gtklabel.c (gtk_label_grab_focus): Don't return a value from a void function.
This commit is contained in:
parent
6441a62967
commit
8de623acd4
@ -1,3 +1,8 @@
|
||||
2006-01-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.c (gtk_label_grab_focus): Don't return a value from
|
||||
a void function.
|
||||
|
||||
2006-01-04 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkbindings.h (struct _GtkBindingSignal): Revert questionable
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-01-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtklabel.c (gtk_label_grab_focus): Don't return a value from
|
||||
a void function.
|
||||
|
||||
2006-01-04 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkbindings.h (struct _GtkBindingSignal): Revert questionable
|
||||
|
@ -2764,7 +2764,7 @@ gtk_label_grab_focus (GtkWidget *widget)
|
||||
label = GTK_LABEL (widget);
|
||||
|
||||
if (label->select_info == NULL)
|
||||
return FALSE;
|
||||
return;
|
||||
|
||||
priv = GTK_LABEL_GET_PRIVATE (label);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user