~ubuntu-branches/ubuntu/trusty/lordsawar/trusty

« back to all changes in this revision

Viewing changes to src/Threatlist.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Barry deFreese
  • Date: 2009-10-21 08:02:12 UTC
  • mfrom: (1.1.8 upstream) (5.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20091021080212-wpmd6xdaxrgnn63y
Tags: 0.1.6-1
[ Barry deFreese ]
* New upstream release.
  + Drop libsdl-image1.2 from build-deps, no longer needed.
* Add README.source for quilt patch system.
* Clean up debian/copyright some.
* Bump Standards Version to 3.8.3. (No changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Copyright (C) 2004 John Farrell
2
2
// Copyright (C) 2004, 2005 Ulf Lorenz
3
3
// Copyright (C) 2005 Andrea Paternesi
4
 
// Copyright (C) 2007 Ben Asselstine
 
4
// Copyright (C) 2007, 2009 Ben Asselstine
5
5
//
6
6
//  This program is free software; you can redistribute it and/or modify
7
7
//  it under the terms of the GNU General Public License as published by
8
 
//  the Free Software Foundation; either version 2 of the License, or
 
8
//  the Free Software Foundation; either version 3 of the License, or
9
9
//  (at your option) any later version.
10
10
//
11
11
//  This program is distributed in the hope that it will be useful,
188
188
    }
189
189
}
190
190
 
 
191
void Threatlist::deleteStack(guint32 id)
 
192
{
 
193
    for (Threatlist::iterator it = begin(); it != end(); it++)
 
194
        (*it)->deleteStack(id);
 
195
}
 
196
 
191
197
void Threatlist::deleteStack(Stack* s)
192
198
{
193
199
    for (Threatlist::iterator it = begin(); it != end(); it++)