1 --- yadex-1.7.0.orig/src/wadlist.cc Fri Mar 28 18:37:32 2003
2 +++ yadex-1.7.0/src/wadlist.cc Tue Jul 3 18:35:21 2007
4 priv->iter = priv->list.erase (i);
5 if (priv->iter == priv->list.begin ())
7 - priv->iter = 0; // Catch bugs
8 + list_t::iterator empty;
9 + priv->iter = empty; // Catch bugs
13 --- yadex-1.7.0.orig/src/yadex.h Sat Jan 1 14:23:40 2005
14 +++ yadex-1.7.0/src/yadex.h Sat Jan 1 14:23:50 2005
19 -typedef unsigned long u32;
22 +typedef unsigned int u32;
26 -typedef signed long i32;
29 +typedef signed int i32;
35 --- yadex-1.7.0.orig/src/gfx.cc 2009-05-24 02:01:55.921088470 +0200
36 +++ yadex-1.7.0/src/gfx.cc 2009-05-24 02:07:44.478136129 +0200
38 win_vis_id = vis_info->visualid;
39 #if defined _cplusplus || defined __cplusplus
40 win_vis_class = vis_info->c_class;
43 win_vis_class = vis_info->class;
45 win_ncolours = vis_info->colormap_size;