Drop two pointless lines

These return statements weren't making any difference.
This commit is contained in:
Matthias Clasen 2014-09-12 22:21:43 -04:00
parent 45369d506b
commit 76b1361902

View File

@ -757,7 +757,6 @@ gtk_drag_get_event_actions (const GdkEvent *event,
*suggested_action = GDK_ACTION_COPY;
*possible_actions = GDK_ACTION_COPY;
}
return;
}
else
{
@ -766,7 +765,6 @@ gtk_drag_get_event_actions (const GdkEvent *event,
*suggested_action = GDK_ACTION_MOVE;
*possible_actions = GDK_ACTION_MOVE;
}
return;
}
}
else