~ubuntu-branches/debian/sid/freeciv/sid

« back to all changes in this revision

Viewing changes to client/gui-gtk-2.0/spaceshipdlg.c

  • Committer: Package Import Robot
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2011-08-28 22:40:00 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: package-import@ubuntu.com-20110828224000-j2r1erewlem25dox
Tags: 2.3.0-1
[ Karl Goetz ]
* New upstream version.
* Fix themes_sdl_use_system_fonts.diff to apply cleanly on 2.3.0
* Massage work_around_unity_induced_breakage.diff to get it
  applying to the new codebase (The patch assumes commits made
  after 2.3.0 was tagged upstream).

[ Clint Adams ]
* Fudge build system to think there is no libtool mismatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
*****************************************************************/
94
94
void spaceship_dialog_done()
95
95
{
96
 
  dialog_list_free(dialog_list);
 
96
  dialog_list_destroy(dialog_list);
97
97
}
98
98
 
99
99
/****************************************************************
185
185
{
186
186
  struct spaceship_dialog *pdialog = (struct spaceship_dialog *)data;
187
187
  
188
 
  dialog_list_unlink(dialog_list, pdialog);
 
188
  dialog_list_remove(dialog_list, pdialog);
189
189
 
190
190
  free(pdialog);
191
191
}