Complete.Org: Mailing Lists: Archives: freeciv-dev: April 2005:
[Freeciv-Dev] (PR#12783) PATCH xaw client to compile with latest cvs
Home

[Freeciv-Dev] (PR#12783) PATCH xaw client to compile with latest cvs

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
Subject: [Freeciv-Dev] (PR#12783) PATCH xaw client to compile with latest cvs
From: "Vijay Kiran Kamuju" <infyquest@xxxxxxxxx>
Date: Wed, 13 Apr 2005 05:00:23 -0700
Reply-to: bugs@xxxxxxxxxxx

<URL: http://bugs.freeciv.org/Ticket/Display.html?id=12783 >

diff ../freeciv-cvs-Apr-12/client/gui-xaw/citydlg.c 
freeciv/client/gui-xaw/citydlg.c
130c130
<   int is_modal;
---
>   /*int is_modal;*/
145c145
< static struct city_dialog *create_city_dialog(struct city *pcity, bool 
make_modal);
---
> static struct city_dialog *create_city_dialog(struct city *pcity);
410c410
< void popup_city_dialog(struct city *pcity, bool make_modal)
---
> void popup_city_dialog(struct city *pcity)
415c415
<     pdialog=create_city_dialog(pcity, make_modal);
---
>     pdialog=create_city_dialog(pcity);
467c467
< struct city_dialog *create_city_dialog(struct city *pcity, bool make_modal)
---
> struct city_dialog *create_city_dialog(struct city *pcity)
510c510
<                        make_modal ? transientShellWidgetClass :
---
> /*                     make_modal ? transientShellWidgetClass :*/
1054c1054
< 
---
> /*
1058a1059
> */
2317a2319
> /*
2319a2322
> */
Only in freeciv/client/gui-xaw/: citydlg.o
diff ../freeciv-cvs-Apr-12/client/gui-xaw/cityrep.c 
freeciv/client/gui-xaw/cityrep.c
489c489
<       popup_city_dialog(pcity, 0);
---
>       popup_city_dialog(pcity);
diff ../freeciv-cvs-Apr-12/client/gui-xaw/graphics.c 
freeciv/client/gui-xaw/graphics.c
517c517
<     struct sprite *flag=get_nation_by_plr(game.player_ptr)->flag_sprite;
---
>     struct sprite 
> *flag=get_nation_flag_sprite(tileset,game.player_ptr->nation);
528c528
<     struct sprite *s=get_unit_type(i)->sprite;
---
>     struct sprite *s=get_unittype_sprite(tileset,i);
diff ../freeciv-cvs-Apr-12/client/gui-xaw/mapctrl.c 
freeciv/client/gui-xaw/mapctrl.c
56a57
> #include "overview_common.h"
Only in freeciv/client/gui-xaw/: mapctrl.o
diff ../freeciv-cvs-Apr-12/client/gui-xaw/mapview.c 
freeciv/client/gui-xaw/mapview.c
50a51
> #include "overview_common.h"

This patch covers below fixes for gui-gtk-2.0 ported to gui-xaw just enough 
to make it compile

PR#12694
PR#12761
PR#12751
This patch covers below fixes for gui-gtk-2.0 ported to gui-xaw just enough to make it compile
PR#12694
PR#12761
PR#12751



[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#12783) PATCH xaw client to compile with latest cvs, Vijay Kiran Kamuju <=