r606: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 5 Mar 2001 15:16:25 +0000 (15:16 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 5 Mar 2001 15:16:25 +0000 (15:16 +0000)
src/backgroundmgr.cpp
src/ctsim.cpp

index ddbefb75f9108ad6d1b015e92d71b30d75be164f..ff22e58352a70a0747fc34d462bec7a49c35f98a 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2001 Kevin Rosenberg
 **
-**  $Id: backgroundmgr.cpp,v 1.9 2001/03/04 03:14:47 kevin Exp $
+**  $Id: backgroundmgr.cpp,v 1.10 2001/03/05 15:16:25 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
@@ -219,7 +219,7 @@ BackgroundManager::resizeWindow()
 {
   int iHighestPosition = -1;
 
-  for (int i = 0; i < m_vecpPositions.size(); i++)
+  for (unsigned int i = 0; i < m_vecpPositions.size(); i++)
     if (iHighestPosition < m_vecpPositions[i])
       iHighestPosition = m_vecpPositions[i];
 
index 713065af8a92d5de18e19ae56cb263a509181b31..7beb6e3a397ddfcc3405fbcfd6ca833290e7d6ff 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: ctsim.cpp,v 1.94 2001/03/04 22:30:19 kevin Exp $
+**  $Id: ctsim.cpp,v 1.95 2001/03/05 15:16:25 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
@@ -69,7 +69,7 @@
 #endif
 #endif
 
-static const char* rcsindent = "$Id: ctsim.cpp,v 1.94 2001/03/04 22:30:19 kevin Exp $";
+static const char* rcsindent = "$Id: ctsim.cpp,v 1.95 2001/03/05 15:16:25 kevin Exp $";
 
 struct option CTSimApp::ctsimOptions[] = 
 {
@@ -84,7 +84,7 @@ IMPLEMENT_APP(CTSimApp)
 CTSimApp::CTSimApp()
 :  m_bAdvancedOptions(false), m_bSetModifyNewDocs(true), m_bVerboseLogging(false), m_bShowStartupTips(true),
 m_iCurrentTip(0), m_bUseBackgroundTasks(false),
-m_docManager(NULL), m_pFrame(NULL), m_pLog(0),  m_pConfig(0), m_pLogDoc(0)
+m_docManager(NULL), m_pFrame(NULL), m_pConfig(0), m_pLog(0), m_pLogDoc(0)
 {
   theApp = this;
 }