Avoid a compiler warning
gcc doesn't like returning without a value from a non-void function.
This commit is contained in:
@@ -2294,7 +2294,7 @@ _gtk_selection_request (GtkWidget *widget,
|
||||
gulong selection_max_size;
|
||||
|
||||
if (event->requestor == NULL)
|
||||
return;
|
||||
return FALSE;
|
||||
|
||||
if (initialize)
|
||||
gtk_selection_init ();
|
||||
|
||||
Reference in New Issue
Block a user