~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to src/start_screen.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Martin Michlmayr
  • Date: 2006-05-25 22:51:25 UTC
  • mfrom: (3.1.2 dapper)
  • Revision ID: james.westby@ubuntu.com-20060525225125-0cyml94ypvbd3z8n
Tags: 0.6.0-8.4
* NMU as part of the GCC 4.1 transition.
* patches/51_gcc41.dpatch: Include cassert. (Closes: #356455).

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
  if (description == "")
189
189
    return description;
190
190
 
191
 
  std::string::size_type pos = 0;
 
191
  unsigned int pos = 0;
192
192
  while ((pos = description.find('\t', pos)) != std::string::npos)
193
193
    description.replace(pos, 1, 1, ' ');
194
194