249
public bool selection_data_is_uri_list (Gtk.SelectionData selection_data, uint info, out string? text) {
249
public static bool selection_data_is_uri_list (Gtk.SelectionData selection_data, uint info, out string? text) {
252
252
if (info == Marlin.TargetType.TEXT_URI_LIST &&
253
253
selection_data.get_format () == 8 &&
254
254
selection_data.get_length () > 0) {
258
258
debug ("DNDHANDLER selection data is uri list returning %s", (text != null).to_string ());
263
263
var sb = new StringBuilder ("");
265
265
foreach (uchar u in cdata)