mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-28 06:26:12 -04:00
24 lines
694 B
Plaintext
24 lines
694 B
Plaintext
$NetBSD: patch-ai,v 1.1 2005/03/16 20:03:57 rillig Exp $
|
|
|
|
c++-2.95.3 does not know vector::at().
|
|
|
|
--- src/AlbumWid.ui.h.orig Thu Jun 3 20:53:22 2004
|
|
+++ src/AlbumWid.ui.h Wed Mar 16 20:22:58 2005
|
|
@@ -26,6 +26,7 @@
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
|
|
+#include <pkgsrc_fixes.h>
|
|
|
|
void AlbumWid::init()
|
|
{
|
|
@@ -88,7 +89,7 @@ void AlbumWid::onRemoveAll()
|
|
//run through the vector and delete each item
|
|
for(uint i = 0;i<m_vecFileList.size();i++)
|
|
{
|
|
- delete m_vecFileList.at(i);
|
|
+ delete at_replacement(m_vecFileList, i);
|
|
}
|
|
//clear vector
|
|
m_vecFileList.clear();
|