comparison gui/ui/actions.c @ 35363:f1018a8029b2

Remove dead code.
author ib
date Fri, 23 Nov 2012 12:44:53 +0000
parents 80fe9ad7f318
children dd38e289f246
comparison
equal deleted inserted replaced
35362:848ca0b6d5ca 35363:f1018a8029b2
239 } 239 }
240 240
241 void uiCurr(void) 241 void uiCurr(void)
242 { 242 {
243 plItem *curr; 243 plItem *curr;
244 int stop = 0;
245 244
246 if (guiInfo.Playing == GUI_PAUSE) 245 if (guiInfo.Playing == GUI_PAUSE)
247 return; 246 return;
248 247
249 switch (guiInfo.StreamType) { 248 switch (guiInfo.StreamType) {
262 break; 261 break;
263 } 262 }
264 263
265 return; 264 return;
266 } 265 }
267
268 if (stop)
269 uiEventHandling(evStop, 0);
270 266
271 if (guiInfo.Playing == GUI_PLAY) 267 if (guiInfo.Playing == GUI_PLAY)
272 uiEventHandling(evPlay, 0); 268 uiEventHandling(evPlay, 0);
273 } 269 }
274 270