comparison src/slideshow.c @ 513:985fdfebd89e

Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
author zas_
date Thu, 24 Apr 2008 12:47:09 +0000
parents 48c8e49b571c
children b7e99bfeadc9
comparison
equal deleted inserted replaced
512:f9bf33be53ff 513:985fdfebd89e
107 /* start with specified image by skipping to it */ 107 /* start with specified image by skipping to it */
108 gint i = 0; 108 gint i = 0;
109 109
110 while(ss->list && i < start_index) 110 while(ss->list && i < start_index)
111 { 111 {
112 ss->list_done = g_list_prepend (ss->list_done, ss->list->data); 112 ss->list_done = g_list_prepend(ss->list_done, ss->list->data);
113 ss->list = g_list_remove(ss->list, ss->list->data); 113 ss->list = g_list_remove(ss->list, ss->list->data);
114 i++; 114 i++;
115 } 115 }
116 } 116 }
117 } 117 }
164 if (forward) 164 if (forward)
165 { 165 {
166 if (!ss->list) return TRUE; 166 if (!ss->list) return TRUE;
167 167
168 row = GPOINTER_TO_INT(ss->list->data); 168 row = GPOINTER_TO_INT(ss->list->data);
169 ss->list_done = g_list_prepend (ss->list_done, ss->list->data); 169 ss->list_done = g_list_prepend(ss->list_done, ss->list->data);
170 ss->list = g_list_remove(ss->list, ss->list->data); 170 ss->list = g_list_remove(ss->list, ss->list->data);
171 } 171 }
172 else 172 else
173 { 173 {
174 if (!ss->list_done || !ss->list_done->next) return TRUE; 174 if (!ss->list_done || !ss->list_done->next) return TRUE;