r322: *** empty log message ***
[ctsim.git] / src / ctsim.cpp
index 06c91ea444c332ae36889539eb8fbcc4beedd65b..8dc7e229b526ab201241350ab6215a2a8c48c260 100644 (file)
@@ -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
 \r
-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<ImageFileDocument*>& vecIF)\r
 {\r
   const ImageFile& rIF = pIFDoc->getImageFile();\r
-  int nx = rIF.nx();\r
-  int ny = rIF.ny();\r
+  unsigned int nx = rIF.nx();\r
+  unsigned int ny = rIF.ny();\r
   wxList& rListDocs = m_docManager->GetDocuments();\r
   for (wxNode* pNode = rListDocs.GetFirst(); pNode != NULL; pNode = pNode->GetNext()) {\r
     wxDocument* pDoc = reinterpret_cast<wxDocument*>(pNode->GetData());\r