[Freeciv-commits] r24783 - /trunk/data/civ2civ3/effects.ruleset

2014-04-21 Thread cazfi74
Author: cazfi
Date: Mon Apr 21 09:34:08 2014
New Revision: 24783

URL: http://svn.gna.org/viewcvs/freeciv?rev=24783view=rev
Log:
Made Sun Tzu's War Academy to apply to Big Land units in civ2civ3 ruleset.

Patch by David Fernandez bardo

See patch #4640

Modified:
trunk/data/civ2civ3/effects.ruleset

Modified: trunk/data/civ2civ3/effects.ruleset
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/data/civ2civ3/effects.ruleset?rev=24783r1=24782r2=24783view=diff
==
--- trunk/data/civ2civ3/effects.ruleset (original)
+++ trunk/data/civ2civ3/effects.ruleset Mon Apr 21 09:34:08 2014
@@ -3180,12 +3180,34 @@
 }
 
 [effect_sun_tzus_war_academy_1]
+type= Veteran_Build
+value   = 1
+reqs=
+{ type, name, range, present
+  Building, Sun Tzu's War Academy, Player, TRUE
+  UnitClass, Big Land, Local, TRUE
+  UnitFlag, NonMil, Local, FALSE
+  UnitFlag, NoVeteran, Local, FALSE
+}
+
+[effect_sun_tzus_war_academy_2]
 type= Veteran_Combat
 value   = 50
 reqs=
 { type, name, range, present
   Building, Sun Tzu's War Academy, Player, TRUE
   UnitClass, Land, Local, TRUE
+  UnitFlag, NonMil, Local, FALSE
+  UnitFlag, NoVeteran, Local, FALSE
+}
+
+[effect_sun_tzus_war_academy_3]
+type= Veteran_Combat
+value   = 50
+reqs=
+{ type, name, range, present
+  Building, Sun Tzu's War Academy, Player, TRUE
+  UnitClass, Big Land, Local, TRUE
   UnitFlag, NonMil, Local, FALSE
   UnitFlag, NoVeteran, Local, FALSE
 }


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r24784 - /branches/S2_5/data/civ2civ3/effects.ruleset

2014-04-21 Thread cazfi74
Author: cazfi
Date: Mon Apr 21 09:34:14 2014
New Revision: 24784

URL: http://svn.gna.org/viewcvs/freeciv?rev=24784view=rev
Log:
Made Sun Tzu's War Academy to apply to Big Land units in civ2civ3 ruleset.

Patch by David Fernandez bardo

See patch #4640

Modified:
branches/S2_5/data/civ2civ3/effects.ruleset

Modified: branches/S2_5/data/civ2civ3/effects.ruleset
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/data/civ2civ3/effects.ruleset?rev=24784r1=24783r2=24784view=diff
==
--- branches/S2_5/data/civ2civ3/effects.ruleset (original)
+++ branches/S2_5/data/civ2civ3/effects.ruleset Mon Apr 21 09:34:14 2014
@@ -3401,12 +3401,40 @@
 }
 
 [effect_sun_tzus_war_academy_1]
+type= Veteran_Build
+value   = 1
+reqs=
+{ type, name, range
+  Building, Sun Tzu's War Academy, Player
+  UnitClass, Big Land, Local
+}
+nreqs   =
+{ type, name, range
+  UnitFlag, NonMil, Local
+  UnitFlag, NoVeteran, Local
+}
+
+[effect_sun_tzus_war_academy_2]
 type= Veteran_Combat
 value   = 50
 reqs=
 { type, name, range
   Building, Sun Tzu's War Academy, Player
   UnitClass, Land, Local
+}
+nreqs   =
+{ type, name, range
+  UnitFlag, NonMil, Local
+  UnitFlag, NoVeteran, Local
+}
+
+[effect_sun_tzus_war_academy_3]
+type= Veteran_Combat
+value   = 50
+reqs=
+{ type, name, range
+  Building, Sun Tzu's War Academy, Player
+  UnitClass, Big Land, Local
 }
 nreqs   =
 { type, name, range


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r24785 - in /trunk/common: base.c extras.c map.h metaknowledge.c requirements.c requirements.h road.c terrain.c

2014-04-21 Thread 0jacobnk . gna
Author: jtn
Date: Mon Apr 21 15:47:08 2014
New Revision: 24785

URL: http://svn.gna.org/viewcvs/freeciv?rev=24785view=rev
Log:
Requirements with Adjacent/CAdjacent ranges always check the centre tile too.
Fixed the TerrainClass, Extra, TerrainFlag, BaseFlag, RoadFlag, CityTile,
and MaxUnitsOnTile requirements.
Also, TerrainClass/TerrainFlag City-ranged requirements now cope with
unknown terrain within the city radius.

See gna bug #21470.

Modified:
trunk/common/base.c
trunk/common/extras.c
trunk/common/map.h
trunk/common/metaknowledge.c
trunk/common/requirements.c
trunk/common/requirements.h
trunk/common/road.c
trunk/common/terrain.c

Modified: trunk/common/base.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/common/base.c?rev=24785r1=24784r2=24785view=diff
==
--- trunk/common/base.c (original)
+++ trunk/common/base.c Mon Apr 21 15:47:08 2014
@@ -38,7 +38,7 @@
 
 /
   Returns TRUE iff any cardinally adjacent tile contains a base with
-  the given flag
+  the given flag (does not check ptile itself)
 /
 bool is_base_flag_card_near(const struct tile *ptile, enum base_flag_id flag)
 {
@@ -55,6 +55,7 @@
 
 /
   Returns TRUE iff any adjacent tile contains a base with the given flag
+  (does not check ptile itself)
 /
 bool is_base_flag_near_tile(const struct tile *ptile, enum base_flag_id flag)
 {

Modified: trunk/common/extras.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/common/extras.c?rev=24785r1=24784r2=24785view=diff
==
--- trunk/common/extras.c   (original)
+++ trunk/common/extras.c   Mon Apr 21 15:47:08 2014
@@ -314,6 +314,7 @@
 
 /
   Is there extra of the given type cardinally near tile?
+  (Does not check ptile itself.)
 /
 bool is_extra_card_near(const struct tile *ptile, const struct extra_type 
*pextra)
 {
@@ -328,6 +329,7 @@
 
 /
   Is there extra of the given type near tile?
+  (Does not check ptile itself.)
 /
 bool is_extra_near_tile(const struct tile *ptile, const struct extra_type 
*pextra)
 {

Modified: trunk/common/map.h
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/common/map.h?rev=24785r1=24784r2=24785view=diff
==
--- trunk/common/map.h  (original)
+++ trunk/common/map.h  Mon Apr 21 15:47:08 2014
@@ -376,10 +376,10 @@
 
 extern struct terrain_misc terrain_control;
 
-/* This iterates outwards from the starting point. Every tile within max_dist
- * will show up exactly once, in an outward (based on real map distance)
- * order.  The returned values are always real and are normalized.  The
- * starting position must be normal.
+/* This iterates outwards from the starting point.  Every tile within max_dist
+ * (including the starting tile) will show up exactly once, in an outward
+ * (based on real map distance) order.  The returned values are always real
+ * and are normalized.  The starting position must be normal.
  *
  * See also iterate_outward() */
 #define iterate_outward_dxy(start_tile, max_dist, _tile, _x, _y)   \
@@ -468,8 +468,9 @@
   } square_dxy_iterate_end;\
 }
 
-/* Iterate through all map positions adjacent to the given center map
- * position, with normalization.  The order of positions is unspecified. */
+/* Iterate itr_tile through all map tiles adjacent to the given center map
+ * position, with normalization.  Does not include the center position.
+ * The order of positions is unspecified. */
 #define adjc_iterate(center_tile, itr_tile)\
 {  \
   /* Written as a wrapper to adjc_dir_iterate since it's the cleanest and   \
@@ -480,12 +481,14 @@
   } adjc_dir_iterate_end;   \
 }
 
+/* As adjc_iterate() but also set direction8 iterator variable dir_itr */
 #define adjc_dir_iterate(center_tile, itr_tile, dir_itr)   \
   adjc_dirlist_iterate(center_tile, itr_tile, dir_itr, \
   map.valid_dirs, map.num_valid_dirs)
 
 #define adjc_dir_iterate_end adjc_dirlist_iterate_end
 
+/* Only set direction8 dir_itr (not tile) */
 #define 

[Freeciv-commits] r24786 - in /branches/S2_5/common: base.c map.h requirements.c requirements.h road.c terrain.c

2014-04-21 Thread 0jacobnk . gna
Author: jtn
Date: Mon Apr 21 15:56:18 2014
New Revision: 24786

URL: http://svn.gna.org/viewcvs/freeciv?rev=24786view=rev
Log:
Requirements with Adjacent/CAdjacent ranges always check the centre tile too.
Fixed the TerrainClass, Base, Road, TerrainFlag, and CityTile requirements.
Also, TerrainClass/TerrainFlag City-ranged requirements now cope with
unknown terrain within the city radius.

See gna bug #21470.

Modified:
branches/S2_5/common/base.c
branches/S2_5/common/map.h
branches/S2_5/common/requirements.c
branches/S2_5/common/requirements.h
branches/S2_5/common/road.c
branches/S2_5/common/terrain.c

Modified: branches/S2_5/common/base.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/common/base.c?rev=24786r1=24785r2=24786view=diff
==
--- branches/S2_5/common/base.c (original)
+++ branches/S2_5/common/base.c Mon Apr 21 15:56:18 2014
@@ -128,6 +128,7 @@
 
 /
   Is there base of the given type cardinally near tile?
+  (Does not check ptile itself.)
 /
 bool is_base_card_near(const struct tile *ptile, const struct base_type *pbase)
 {
@@ -142,6 +143,7 @@
 
 /
   Is there base of the given type near tile?
+  (Does not check ptile itself.)
 /
 bool is_base_near_tile(const struct tile *ptile, const struct base_type *pbase)
 {

Modified: branches/S2_5/common/map.h
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/common/map.h?rev=24786r1=24785r2=24786view=diff
==
--- branches/S2_5/common/map.h  (original)
+++ branches/S2_5/common/map.h  Mon Apr 21 15:56:18 2014
@@ -377,10 +377,10 @@
 
 extern struct terrain_misc terrain_control;
 
-/* This iterates outwards from the starting point. Every tile within max_dist
- * will show up exactly once, in an outward (based on real map distance)
- * order.  The returned values are always real and are normalized.  The
- * starting position must be normal.
+/* This iterates outwards from the starting point.  Every tile within max_dist
+ * (including the starting tile) will show up exactly once, in an outward
+ * (based on real map distance) order.  The returned values are always real
+ * and are normalized.  The starting position must be normal.
  *
  * See also iterate_outward() */
 #define iterate_outward_dxy(start_tile, max_dist, _tile, _x, _y)   \
@@ -469,8 +469,9 @@
   } square_dxy_iterate_end;\
 }
 
-/* Iterate through all map positions adjacent to the given center map
- * position, with normalization.  The order of positions is unspecified. */
+/* Iterate itr_tile through all map tiles adjacent to the given center map
+ * position, with normalization.  Does not include the center position.
+ * The order of positions is unspecified. */
 #define adjc_iterate(center_tile, itr_tile)\
 {  \
   /* Written as a wrapper to adjc_dir_iterate since it's the cleanest and   \
@@ -481,12 +482,14 @@
   } adjc_dir_iterate_end;   \
 }
 
+/* As adjc_iterate() but also set direction8 iterator variable dir_itr */
 #define adjc_dir_iterate(center_tile, itr_tile, dir_itr)   \
   adjc_dirlist_iterate(center_tile, itr_tile, dir_itr, \
   map.valid_dirs, map.num_valid_dirs)
 
 #define adjc_dir_iterate_end adjc_dirlist_iterate_end
 
+/* Only set direction8 dir_itr (not tile) */
 #define adjc_dir_base_iterate(center_tile, dir_itr)
\
   adjc_dirlist_base_iterate(center_tile, dir_itr,  
\
 map.valid_dirs, map.num_valid_dirs)
@@ -494,18 +497,23 @@
 #define adjc_dir_base_iterate_end  
\
   adjc_dirlist_base_iterate_end
 
+/* Iterate itr_tile through all map tiles cardinally adjacent to the given
+ * center map position, with normalization.  Does not include the center
+ * position.  The order of positions is unspecified. */
 #define cardinal_adjc_iterate(center_tile, itr_tile)   \
   adjc_dirlist_iterate(center_tile, itr_tile, _dir_itr,
\
   map.cardinal_dirs, map.num_cardinal_dirs)
 
 #define cardinal_adjc_iterate_end adjc_dirlist_iterate_end
 
+/* As cardinal_adjc_iterate but also set direction8 variable dir_itr */
 #define cardinal_adjc_dir_iterate(center_tile, itr_tile, dir_itr)  \
   adjc_dirlist_iterate(center_tile, itr_tile, dir_itr,   

[Freeciv-commits] r24787 - in /branches/S2_4/common: base.c map.h requirements.c requirements.h terrain.c

2014-04-21 Thread 0jacobnk . gna
Author: jtn
Date: Mon Apr 21 16:06:03 2014
New Revision: 24787

URL: http://svn.gna.org/viewcvs/freeciv?rev=24787view=rev
Log:
Requirements with Adjacent/CAdjacent ranges always check the centre tile too.
Fixed the TerrainClass, Base, and CityTile requirement types.

See gna bug #21470.

Modified:
branches/S2_4/common/base.c
branches/S2_4/common/map.h
branches/S2_4/common/requirements.c
branches/S2_4/common/requirements.h
branches/S2_4/common/terrain.c

Modified: branches/S2_4/common/base.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_4/common/base.c?rev=24787r1=24786r2=24787view=diff
==
--- branches/S2_4/common/base.c (original)
+++ branches/S2_4/common/base.c Mon Apr 21 16:06:03 2014
@@ -131,6 +131,7 @@
 
 /
   Is there base of the given type cardinally near tile?
+  (Does not check ptile itself.)
 /
 bool is_base_card_near(const struct tile *ptile, const struct base_type *pbase)
 {
@@ -145,6 +146,7 @@
 
 /
   Is there base of the given type near tile?
+  (Does not check ptile itself.)
 /
 bool is_base_near_tile(const struct tile *ptile, const struct base_type *pbase)
 {

Modified: branches/S2_4/common/map.h
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_4/common/map.h?rev=24787r1=24786r2=24787view=diff
==
--- branches/S2_4/common/map.h  (original)
+++ branches/S2_4/common/map.h  Mon Apr 21 16:06:03 2014
@@ -378,10 +378,10 @@
 
 extern struct terrain_misc terrain_control;
 
-/* This iterates outwards from the starting point. Every tile within max_dist
- * will show up exactly once, in an outward (based on real map distance)
- * order.  The returned values are always real and are normalized.  The
- * starting position must be normal.
+/* This iterates outwards from the starting point.  Every tile within max_dist
+ * (including the starting tile) will show up exactly once, in an outward
+ * (based on real map distance) order.  The returned values are always real
+ * and are normalized.  The starting position must be normal.
  *
  * See also iterate_outward() */
 #define iterate_outward_dxy(start_tile, max_dist, _tile, _x, _y)   \
@@ -470,8 +470,9 @@
   } square_dxy_iterate_end;\
 }
 
-/* Iterate through all map positions adjacent to the given center map
- * position, with normalization.  The order of positions is unspecified. */
+/* Iterate itr_tile through all map tiles adjacent to the given center map
+ * position, with normalization.  Does not include the center position.
+ * The order of positions is unspecified. */
 #define adjc_iterate(center_tile, itr_tile)\
 {  \
   /* Written as a wrapper to adjc_dir_iterate since it's the cleanest and   \
@@ -482,12 +483,14 @@
   } adjc_dir_iterate_end;   \
 }
 
+/* As adjc_iterate() but also set direction8 iterator variable dir_itr */
 #define adjc_dir_iterate(center_tile, itr_tile, dir_itr)   \
   adjc_dirlist_iterate(center_tile, itr_tile, dir_itr, \
   map.valid_dirs, map.num_valid_dirs)
 
 #define adjc_dir_iterate_end adjc_dirlist_iterate_end
 
+/* Only set direction8 dir_itr (not tile) */
 #define adjc_dir_base_iterate(center_tile, dir_itr)
\
   adjc_dirlist_base_iterate(center_tile, dir_itr,  
\
 map.valid_dirs, map.num_valid_dirs)
@@ -495,18 +498,23 @@
 #define adjc_dir_base_iterate_end  
\
   adjc_dirlist_base_iterate_end
 
+/* Iterate itr_tile through all map tiles cardinally adjacent to the given
+ * center map position, with normalization.  Does not include the center
+ * position.  The order of positions is unspecified. */
 #define cardinal_adjc_iterate(center_tile, itr_tile)   \
   adjc_dirlist_iterate(center_tile, itr_tile, _dir_itr,
\
   map.cardinal_dirs, map.num_cardinal_dirs)
 
 #define cardinal_adjc_iterate_end adjc_dirlist_iterate_end
 
+/* As cardinal_adjc_iterate but also set direction8 variable dir_itr */
 #define cardinal_adjc_dir_iterate(center_tile, itr_tile, dir_itr)  \
   adjc_dirlist_iterate(center_tile, itr_tile, dir_itr, \
   map.cardinal_dirs, map.num_cardinal_dirs)
 
 #define cardinal_adjc_dir_iterate_end adjc_dirlist_iterate_end
 
+/* Only set 

[Freeciv-commits] r24788 - /trunk/server/unittools.c

2014-04-21 Thread cazfi74
Author: cazfi
Date: Tue Apr 22 01:34:44 2014
New Revision: 24788

URL: http://svn.gna.org/viewcvs/freeciv?rev=24788view=rev
Log:
Check for activities of the settler-type units in the adjacent tiles when
another activity potentially removing requirement for it is finished.
This used to be hardcoded so that only finishing mining, and thus potentially
removing irrigation conflicting with the mine, caused recheck of adjacent units
building irrigation.

See patch #4656

Modified:
trunk/server/unittools.c

Modified: trunk/server/unittools.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/server/unittools.c?rev=24788r1=24787r2=24788view=diff
==
--- trunk/server/unittools.c(original)
+++ trunk/server/unittools.cTue Apr 22 01:34:44 2014
@@ -702,12 +702,18 @@
 **/
 static void update_unit_activity(struct unit *punit)
 {
+  const enum unit_activity tile_changing_actions[] =
+{ ACTIVITY_PILLAGE, ACTIVITY_GEN_ROAD, ACTIVITY_IRRIGATE, ACTIVITY_MINE,
+  ACTIVITY_BASE, ACTIVITY_TRANSFORM, ACTIVITY_POLLUTION,
+  ACTIVITY_FALLOUT, ACTIVITY_LAST };
+
   struct player *pplayer = unit_owner(punit);
   int id = punit-id;
   bool unit_activity_done = FALSE;
   enum unit_activity activity = punit-activity;
   struct tile *ptile = unit_tile(punit);
   bool check_adjacent_units = FALSE;
+  int i;
   
   switch (activity) {
   case ACTIVITY_IDLE:
@@ -785,7 +791,6 @@
   update_tile_knowledge(ptile);
   /* Deliberately don't set unit_activity_done -- we already dealt with
* other units working on the same thing above */
-  check_adjacent_units = TRUE;
 
   call_incident(INCIDENT_PILLAGE, unit_owner(punit), tile_owner(ptile));
 
@@ -876,11 +881,6 @@
   check_terrain_change(ptile, old);
 
   unit_activity_done = TRUE;
-  if (activity != ACTIVITY_IRRIGATE) {
-/* May have destroyed irrigation that other activity was
- * depending on. */
-check_adjacent_units = TRUE;
-  }
 }
 break;
 
@@ -892,6 +892,13 @@
 break;
   }
 
+  for (i = 0; tile_changing_actions[i] != ACTIVITY_LAST; i++) {
+if (tile_changing_actions[i] == activity) {
+  check_adjacent_units = TRUE;
+  break;
+}
+  }
+
   if (unit_activity_done) {
 update_tile_knowledge(ptile);
 unit_list_iterate (ptile-units, punit2) {
@@ -902,7 +909,9 @@
 } unit_list_iterate_end;
   }
 
-  /* Some units nearby may not be able to continue irrigating */
+  /* Some units nearby may not be able to continue their action,
+   * such as building irrigation if we removed the only source
+   * of water from them. */
   if (check_adjacent_units) {
 adjc_iterate(ptile, ptile2) {
   unit_list_iterate(ptile2-units, punit2) {


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits


[Freeciv-commits] r24789 - in /trunk/client: gui-sdl/ gui-sdl2/

2014-04-21 Thread cazfi74
Author: cazfi
Date: Tue Apr 22 01:48:26 2014
New Revision: 24789

URL: http://svn.gna.org/viewcvs/freeciv?rev=24789view=rev
Log:
Removed create_surf_alpha() as useless wrapper around create_surf() in 
sdl2-client
where surfaces are always created with alpha channel.

See patch #4660

Modified:
trunk/client/gui-sdl/mapview.c
trunk/client/gui-sdl2/canvas.c
trunk/client/gui-sdl2/canvas.h
trunk/client/gui-sdl2/citydlg.c
trunk/client/gui-sdl2/dialogs.c
trunk/client/gui-sdl2/graphics.c
trunk/client/gui-sdl2/graphics.h
trunk/client/gui-sdl2/gui_main.c
trunk/client/gui-sdl2/gui_mouse.c
trunk/client/gui-sdl2/gui_string.c
trunk/client/gui-sdl2/gui_tilespec.c
trunk/client/gui-sdl2/helpdlg.c
trunk/client/gui-sdl2/mapctrl.c
trunk/client/gui-sdl2/mapview.c
trunk/client/gui-sdl2/optiondlg.c
trunk/client/gui-sdl2/repodlgs.c
trunk/client/gui-sdl2/widget.c
trunk/client/gui-sdl2/widget_icon.c
trunk/client/gui-sdl2/widget_label.c
trunk/client/gui-sdl2/widget_scrollbar.c
trunk/client/gui-sdl2/widget_window.c
trunk/client/gui-sdl2/wldlg.c

[This mail would be too long, it was shortened to contain the URLs only.]

Modified: trunk/client/gui-sdl/mapview.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl/mapview.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/canvas.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/canvas.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/canvas.h
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/canvas.h?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/citydlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/citydlg.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/dialogs.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/dialogs.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/graphics.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/graphics.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/graphics.h
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/graphics.h?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/gui_main.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/gui_main.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/gui_mouse.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/gui_mouse.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/gui_string.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/gui_string.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/gui_tilespec.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/gui_tilespec.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/helpdlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/helpdlg.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/mapctrl.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/mapctrl.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/mapview.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/mapview.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/optiondlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/optiondlg.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/repodlgs.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/repodlgs.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/widget.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/widget.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/widget_icon.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/widget_icon.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/widget_label.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/widget_label.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/widget_scrollbar.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/widget_scrollbar.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/widget_window.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/widget_window.c?rev=24789r1=24788r2=24789view=diff

Modified: trunk/client/gui-sdl2/wldlg.c
URL: 
http://svn.gna.org/viewcvs/freeciv/trunk/client/gui-sdl2/wldlg.c?rev=24789r1=24788r2=24789view=diff


___
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits