X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.cpp;h=8dc7e229b526ab201241350ab6215a2a8c48c260;hp=06c91ea444c332ae36889539eb8fbcc4beedd65b;hb=7ae47cb0ff0a16d1c36797576155263434cc73ff;hpb=ee405282853525f1fa25c4f4321ba85652353564 diff --git a/src/ctsim.cpp b/src/ctsim.cpp index 06c91ea..8dc7e22 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.21 2000/12/27 03:16:02 kevin Exp $ +** $Id: ctsim.cpp,v 1.22 2000/12/29 20:18:59 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.21 2000/12/27 03:16:02 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.22 2000/12/29 20:18:59 kevin Exp $"; class CTSimApp* theApp = NULL; @@ -289,8 +289,8 @@ void CTSimApp::getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector& vecIF) { const ImageFile& rIF = pIFDoc->getImageFile(); - int nx = rIF.nx(); - int ny = rIF.ny(); + unsigned int nx = rIF.nx(); + unsigned int ny = rIF.ny(); wxList& rListDocs = m_docManager->GetDocuments(); for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) { wxDocument* pDoc = reinterpret_cast(pNode->GetData());