comparison src/cache-loader.c @ 1346:c9949c19a6d0

No space between function name and first parenthesis, it eases greping (see CODING).
author zas_
date Sat, 28 Feb 2009 20:48:47 +0000
parents 10073464e6aa
children 24a12aa0cb54
comparison
equal deleted inserted replaced
1345:6fb0c1829b76 1346:c9949c19a6d0
47 GdkPixbuf *pixbuf; 47 GdkPixbuf *pixbuf;
48 48
49 if (!cl->il && !cl->error) 49 if (!cl->il && !cl->error)
50 { 50 {
51 cl->il = image_loader_new(cl->fd); 51 cl->il = image_loader_new(cl->fd);
52 g_signal_connect (G_OBJECT(cl->il), "error", (GCallback)cache_loader_error_cb, cl); 52 g_signal_connect(G_OBJECT(cl->il), "error", (GCallback)cache_loader_error_cb, cl);
53 g_signal_connect (G_OBJECT(cl->il), "done", (GCallback)cache_loader_done_cb, cl); 53 g_signal_connect(G_OBJECT(cl->il), "done", (GCallback)cache_loader_done_cb, cl);
54 if (image_loader_start(cl->il)) 54 if (image_loader_start(cl->il))
55 { 55 {
56 return FALSE; 56 return FALSE;
57 } 57 }
58 58