X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fctsim.cpp;h=06c91ea444c332ae36889539eb8fbcc4beedd65b;hb=5c6b29ab4885308cc3381af6e0a68f4804956d2e;hp=b128641a90be1fa3bffc42bc206995b4af14ec2e;hpb=c551b53b39a7571cf52831f5e117be1cca95c420;p=ctsim.git diff --git a/src/ctsim.cpp b/src/ctsim.cpp index b128641..06c91ea 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsim.cpp,v 1.20 2000/12/22 04:18:00 kevin Exp $ +** $Id: ctsim.cpp,v 1.21 2000/12/27 03:16:02 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -61,7 +61,7 @@ #endif #endif -static const char* rcsindent = "$Id: ctsim.cpp,v 1.20 2000/12/22 04:18:00 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.21 2000/12/27 03:16:02 kevin Exp $"; class CTSimApp* theApp = NULL; @@ -292,16 +292,13 @@ CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vectorGetDocuments(); - std::vector vecFilename; for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) { wxDocument* pDoc = reinterpret_cast(pNode->GetData()); ImageFileDocument* pIFCompareDoc = dynamic_cast(pDoc); if (pIFCompareDoc && (pIFDoc != pIFCompareDoc)) { const ImageFile& rCompareIF = pIFCompareDoc->getImageFile(); - if (rCompareIF.nx() == nx && rCompareIF.ny() == ny) { - std::string strFilename = pDoc->GetFilename(); + if (rCompareIF.nx() == nx && rCompareIF.ny() == ny) vecIF.push_back (pIFCompareDoc); - } } } }