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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2009-11-27 23:24:00 UTC
  • mfrom: (7.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091127232400-nmoil1yvvskugn1h
[ Karl Goetz ]
* New upstream release
* Bump standards-version to 3.8.3
* Update watch file
  - Now version 3
  - Switched to gna.org instead of sf.net
* Switch readline dev dependency to libreadline-dev instead of
libreadline5-dev. Closes: #553758
* Changed compat to 5
* Relaxed dependencies on freeciv-server for sdl and gtk clients,
freeciv-server is now a recommends
* Stop d/rules trying to gzip scenarios - upstream does this.
* Remove export of datarootdir in d/rules, upstream seems to handle
this correctly now.
* Deleted 01_configure_ac_localedir.diff from d/patches/ and from series.
* Create per-client .desktop files. Closes: #470978, LP: #190555
* Desktop files mention which client they are (sdl/gtk/xaw3d).
* Add myself to uploaders on Clint's suggestion.

[ Clint Adams ]
* Change watch file to grab bz2 tarballs.
* Switch to 3.0 (quilt) source format.
* Remove quilt code from debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
      }
174
174
 
175
175
      /* Validate this slot. */
176
 
      init_worklist(&plr->worklists[i]);
 
176
      worklist_init(&plr->worklists[i]);
177
177
      plr->worklists[i].is_valid = TRUE;
178
178
      strcpy(plr->worklists[i].name, _("new"));
179
179
 
1412
1412
  if (ptr->pcity) {
1413
1413
    city_get_queue(ptr->pcity, &queue);
1414
1414
  } else {
1415
 
    copy_worklist(&queue, pwl);
 
1415
    worklist_copy(&queue, pwl);
1416
1416
  }
1417
1417
 
1418
1418
  for (i = 0; i < worklist_length(&queue); i++) {
1476
1476
 
1477
1477
  model = GTK_TREE_MODEL(ptr->dst);
1478
1478
  
1479
 
  init_worklist(&queue);
 
1479
  worklist_init(&queue);
1480
1480
  sz_strlcpy(queue.name, pwl->name);
1481
1481
 
1482
1482
  i = 0;
1505
1505
      refresh_worklist(ptr->editor);
1506
1506
    }
1507
1507
  } else {
1508
 
    copy_worklist(pwl, &queue);
 
1508
    worklist_copy(pwl, &queue);
1509
1509
  }
1510
1510
}