comparison src/prefs.c @ 4332:c8f374cadbd9

[gaim-migrate @ 4596] And let's let people actually drag-and-drop again :) committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 18 Jan 2003 01:09:59 +0000
parents a9dc4f90d490
children fb911dfb76f4
comparison
equal deleted inserted replaced
4331:bbd7b12986a8 4332:c8f374cadbd9
327 if ((tail = strrchr(name, '.')) == NULL) 327 if ((tail = strrchr(name, '.')) == NULL)
328 return; 328 return;
329 329
330 /* We'll check this just to make sure. This also lets us do something different on 330 /* We'll check this just to make sure. This also lets us do something different on
331 * other platforms, if need be */ 331 * other platforms, if need be */
332 if (!g_strcasecmp(tail, ".gz") || !g_strcasecmp(tail, ".tgz")) 332 grab_url(name, TRUE, theme_got_url, ".tgz");
333 grab_url(name, TRUE, theme_got_url, ".tgz");
334 } 333 }
335 334
336 gtk_drag_finish(dc, TRUE, FALSE, t); 335 gtk_drag_finish(dc, TRUE, FALSE, t);
337 } 336 }
338 337